aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection_edge.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-06-13 22:52:17 +0000
committerRoger Dingledine <arma@torproject.org>2008-06-13 22:52:17 +0000
commit5ded5b58a4c51250f0c999f9607552595eec212f (patch)
tree83de83dccabaa2b57d9ecdcc05500a0ac09340f3 /src/or/connection_edge.c
parent1913364dc82555f2eca964a7e88f2b0922c7fbe9 (diff)
downloadtor-5ded5b58a4c51250f0c999f9607552595eec212f.tar
tor-5ded5b58a4c51250f0c999f9607552595eec212f.tar.gz
> 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
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r--src/or/connection_edge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index 964824c15..43d4c1e80 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. */