diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-18 16:11:24 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-18 16:11:24 +0000 |
commit | 122170c1d3333185bacf361c523c8e19f0a5e8ba (patch) | |
tree | 89abcc91294222de3353c64d0e00f98618e9f55e /src/or/connection_or.c | |
parent | 6c6b0283cbc24f2d3d3bb7139e1cbeb5a35cfedd (diff) | |
download | tor-122170c1d3333185bacf361c523c8e19f0a5e8ba.tar.gz tor-122170c1d3333185bacf361c523c8e19f0a5e8ba.zip |
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
svn:r17686
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 2cd96688f2..399ba1801c 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -398,14 +398,14 @@ connection_or_init_conn_from_address(or_connection_t *conn, tor_addr_copy(&conn->_base.addr, addr); tor_addr_copy(&conn->real_addr, addr); if (r) { - /* XXXX021 proposal 118 will make this more complex. */ + /* XXXX proposal 118 will make this more complex. */ if (tor_addr_eq_ipv4h(&conn->_base.addr, r->addr)) conn->is_canonical = 1; if (!started_here) { /* Override the addr/port, so our log messages will make sense. * This is dangerous, since if we ever try looking up a conn by * its actual addr/port, we won't remember. Careful! */ - /* XXXX021 arma: this is stupid, and it's the reason we need real_addr + /* XXXX arma: this is stupid, and it's the reason we need real_addr * to track is_canonical properly. What requires it? */ /* XXXX <arma> i believe the reason we did this, originally, is because * we wanted to log what OR a connection was to, and if we logged the @@ -929,7 +929,7 @@ connection_or_set_state_open(or_connection_t *conn) /* only report it to the geoip module if it's not a known router */ if (!router_get_by_digest(conn->identity_digest)) { if (tor_addr_family(&TO_CONN(conn)->addr) == AF_INET) { - /*XXXX021 IP6 support ipv6 geoip.*/ + /*XXXX IP6 support ipv6 geoip.*/ uint32_t a = tor_addr_to_ipv4h(&TO_CONN(conn)->addr); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, a, now); } |