]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
> why would it need an anonymized connection?
authorRoger Dingledine <arma@torproject.org>
Fri, 13 Jun 2008 22:52:17 +0000 (22:52 +0000)
committerRoger Dingledine <arma@torproject.org>
Fri, 13 Jun 2008 22:52:17 +0000 (22:52 +0000)
> ah.
> yes, i think you're right. i was thinking 3-hop, but i think it is 1-hop.

svn:r15235

src/or/connection_edge.c

index 964824c15e61bf908f06c2955af8da0763f89a1d..43d4c1e80b63ed995d10eea8740e45bd92f0e108 100644 (file)
@@ -2109,8 +2109,8 @@ connection_ap_make_link(char *address, uint16_t port,
 {
   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. */