diff options
author | Roger Dingledine <arma@torproject.org> | 2008-06-13 22:52:17 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-06-13 22:52:17 +0000 |
commit | 5ded5b58a4c51250f0c999f9607552595eec212f (patch) | |
tree | 83de83dccabaa2b57d9ecdcc05500a0ac09340f3 | |
parent | 1913364dc82555f2eca964a7e88f2b0922c7fbe9 (diff) | |
download | tor-5ded5b58a4c51250f0c999f9607552595eec212f.tar.gz tor-5ded5b58a4c51250f0c999f9607552595eec212f.zip |
> 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.
svn:r15235
-rw-r--r-- | src/or/connection_edge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 964824c15e..43d4c1e80b 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -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. */ |