Skip to content
Snippets Groups Projects
Commit 81a5ee77 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Merge branch 'bug9147' into maint-0.2.4

parents ca6aacce c9551492
No related branches found
No related tags found
No related merge requests found
o Minor features:
- Issue a warning when running with the bufferevents backend enabled.
It's still not stable, and people should know that they're likely
to hit unexpected problems. Closes ticket 9147.
...@@ -1882,6 +1882,13 @@ do_main_loop(void) ...@@ -1882,6 +1882,13 @@ do_main_loop(void)
} }
} }
#ifdef USE_BUFFEREVENTS
log_warn(LD_GENERAL, "Tor was compiled with the --enable-bufferevents "
"option. This is still experimental, and might cause strange "
"bugs. If you want a more stable Tor, be sure to build without "
"--enable-bufferevents.");
#endif
handle_signals(1); handle_signals(1);
/* load the private keys, if we're supposed to have them, and set up the /* load the private keys, if we're supposed to have them, and set up the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment