diff options
author | Roger Dingledine <arma@torproject.org> | 2006-10-06 07:50:57 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-10-06 07:50:57 +0000 |
commit | d1b9de222e14de3bc664f45cc9824b27a57f6d06 (patch) | |
tree | 417e50290f21299373d9dd9fac87e2799fa5b9d3 /src/or/dns.c | |
parent | b6e590a1a536008efb17b54dace481b49b5b14f5 (diff) | |
download | tor-d1b9de222e14de3bc664f45cc9824b27a57f6d06.tar.gz tor-d1b9de222e14de3bc664f45cc9824b27a57f6d06.zip |
cleanups, closer to a changelog
svn:r8606
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index a47290e731..60dca8b692 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -385,12 +385,13 @@ purge_expired_resolves(time_t now) assert_cache_ok(); } -/** Send a response to the RESOLVE request of a connection. answer_type must - * be one of RESOLVED_TYPE_(IPV4|ERROR|ERROR_TRANSIENT) +/** Send a response to the RESOLVE request of a connection. + * <b>answer_type</b> must be one of + * RESOLVED_TYPE_(IPV4|ERROR|ERROR_TRANSIENT). * * If <b>circ</b> is provided, and we have a cached answer, send the - * answer back along circ; otherwise, send the answer back along * - * <b>exitconn</b>'s attached circuit. + * answer back along circ; otherwise, send the answer back along + * <b>conn</b>'s attached circuit. */ static void send_resolved_cell(edge_connection_t *conn, or_circuit_t *circ, @@ -446,7 +447,7 @@ send_resolved_cell(edge_connection_t *conn, or_circuit_t *circ, * * If <b>circ</b> is provided, and we have a cached answer, send the * answer back along circ; otherwise, send the answer back along - * <b>exitconn</b>'s attached circuit. + * <b>conn</b>'s attached circuit. */ static void send_resolved_hostname_cell(edge_connection_t *conn, or_circuit_t *circ, |