From: Sebastian Hahn Date: Sat, 2 Jan 2010 01:14:02 +0000 (+0100) Subject: Log a notice when we get a new control connection X-Git-Tag: tor-0.2.2.7-alpha~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c32e8c292e4061857542ef7a131d800794253a90;p=thirdparty%2Ftor.git Log a notice when we get a new control connection --- diff --git a/src/or/connection.c b/src/or/connection.c index 667e7dcf97..6506cf81fd 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -209,6 +209,7 @@ control_connection_new(int socket_family) tor_malloc_zero(sizeof(control_connection_t)); connection_init(time(NULL), TO_CONN(control_conn), CONN_TYPE_CONTROL, socket_family); + log_notice(LD_CONTROL, "New control connection opened."); return control_conn; }