summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2010-01-02 02:14:02 +0100
committerRoger Dingledine <arma@torproject.org>2010-01-18 19:14:36 -0500
commitc32e8c292e4061857542ef7a131d800794253a90 (patch)
tree26f5d8cd813b5a54b05ca03508120e3fc04e1c0d
parent571c94a7358dc7b04a64ebac0e3b40150d6c4fce (diff)
downloadtor-c32e8c292e4061857542ef7a131d800794253a90.tar.gz
tor-c32e8c292e4061857542ef7a131d800794253a90.zip
Log a notice when we get a new control connection
-rw-r--r--src/or/connection.c1
1 files changed, 1 insertions, 0 deletions
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;
}