[or-cvs] r15235: > why would it need an anonymized connection? > ah. > yes, i (tor/trunk/src/or)

arma at seul.org arma at seul.org
Fri Jun 13 22:52:17 UTC 2008


Author: arma
Date: 2008-06-13 18:52:17 -0400 (Fri, 13 Jun 2008)
New Revision: 15235

Modified:
   tor/trunk/src/or/connection_edge.c
Log:
> why would it need an anonymized connection?
> ah.
> yes, i think you're right. i was thinking 3-hop, but i think it is 1-hop.


Modified: tor/trunk/src/or/connection_edge.c
===================================================================
--- tor/trunk/src/or/connection_edge.c	2008-06-13 22:18:21 UTC (rev 15234)
+++ tor/trunk/src/or/connection_edge.c	2008-06-13 22:52:17 UTC (rev 15235)
@@ -2109,8 +2109,8 @@
 {
   edge_connection_t *conn;
 
-  log_info(LD_APP,"Making internal anonymized tunnel to %s:%d ...",
-           safe_str(address),port);
+  log_info(LD_APP,"Making internal %s tunnel to %s:%d ...",
+           want_onehop ? "direct" : "anonymized" , safe_str(address),port);
 
   conn = TO_EDGE_CONN(connection_new(CONN_TYPE_AP, AF_INET));
   conn->_base.linked = 1; /* so that we can add it safely below. */



More information about the tor-commits mailing list