[or-cvs] r17973: {tor} clarify which relay gave us the good netinfo cell (tor/trunk/src/or)
arma at seul.org
arma at seul.org
Tue Jan 6 19:21:47 UTC 2009
Author: arma
Date: 2009-01-06 14:21:47 -0500 (Tue, 06 Jan 2009)
New Revision: 17973
Modified:
tor/trunk/src/or/command.c
Log:
clarify which relay gave us the good netinfo cell
Modified: tor/trunk/src/or/command.c
===================================================================
--- tor/trunk/src/or/command.c 2009-01-06 19:07:30 UTC (rev 17972)
+++ tor/trunk/src/or/command.c 2009-01-06 19:21:47 UTC (rev 17973)
@@ -624,9 +624,10 @@
if (connection_or_set_state_open(conn)<0)
connection_mark_for_close(TO_CONN(conn));
else
- log_info(LD_OR, "Got good NETINFO cell from %s; OR connection is now "
+ log_info(LD_OR, "Got good NETINFO cell from %s:%d; OR connection is now "
"open, using protocol version %d",
- safe_str(conn->_base.address), (int)conn->link_proto);
+ safe_str(conn->_base.address), conn->_base.port,
+ (int)conn->link_proto);
assert_connection_ok(TO_CONN(conn),time(NULL));
}
More information about the tor-commits
mailing list