]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Log a notice when we get a new control connection
authorSebastian Hahn <sebastian@torproject.org>
Sat, 2 Jan 2010 01:14:02 +0000 (02:14 +0100)
committerRoger Dingledine <arma@torproject.org>
Tue, 19 Jan 2010 00:14:36 +0000 (19:14 -0500)
src/or/connection.c

index 667e7dcf978193542ace7eaf2fff0e2d5a8450af..6506cf81fd68fc6dc3138d3d1a2b85b1b139d2dd 100644 (file)
@@ -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;
 }