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/dns.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/dns.c')
-rw-r--r-- | src/or/dns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 490444f752..a83c48981d 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -441,7 +441,7 @@ send_resolved_cell(edge_connection_t *conn, uint8_t answer_type) set_uint32(buf+6, htonl(ttl)); buflen = 10; break; - /*XXXX021 IP6 need ipv6 implementation */ + /*XXXX IP6 need ipv6 implementation */ case RESOLVED_TYPE_ERROR_TRANSIENT: case RESOLVED_TYPE_ERROR: { @@ -499,7 +499,7 @@ send_resolved_hostname_cell(edge_connection_t *conn, const char *hostname) * parse it and place the address in <b>in</b> if present. Return 1 on success; * 0 if the address is not in in-addr.arpa format, and -1 if the address is * malformed. */ -/* XXXX021 move this to util.c. */ +/* XXXX021 move this to address.c; unify with logic in connection_edge.c */ int parse_inaddr_arpa_address(const char *address, struct in_addr *in) { |