diff options
author | Roger Dingledine <arma@torproject.org> | 2005-06-28 01:52:58 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-06-28 01:52:58 +0000 |
commit | 0ee665708adc2b5ff19aaa42cce2de49c3102318 (patch) | |
tree | 8477d6a12f32e8120b12663cc4a2253ed3c8bddc | |
parent | 7479a55724f2ce62f259d55bd1322fe4e8ae3ad6 (diff) | |
download | tor-0ee665708adc2b5ff19aaa42cce2de49c3102318.tar tor-0ee665708adc2b5ff19aaa42cce2de49c3102318.tar.gz |
clean up some more comments
svn:r4499
-rw-r--r-- | src/tools/tor-resolve.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/tools/tor-resolve.c b/src/tools/tor-resolve.c index 19932467b..6d23658f8 100644 --- a/src/tools/tor-resolve.c +++ b/src/tools/tor-resolve.c @@ -44,9 +44,9 @@ do { log_fn(LOG_ERR, "Error while %s: %s", act, \ tor_socket_strerror(tor_socket_errno(_s))); } while (0) -/** Set *out to a newly allocated SOCKS4a resolve request with - * username and hostname as provided. Return the number of bytes in - * the request. */ +/** Set *<b>out</b> to a newly allocated SOCKS4a resolve request with + * <b>username</b> and <b>hostname</b> as provided. Return the number + * of bytes in the request. */ static int build_socks4a_resolve_request(char **out, const char *username, @@ -69,8 +69,9 @@ build_socks4a_resolve_request(char **out, return len; } -/** Given a len-byte SOCKS4a response in <b>response</b>, set *addr_out to the - * address it contains (in host order). Return 0 on success, -1 on error. +/** Given a <b>len</b>-byte SOCKS4a response in <b>response</b>, set + * *<b>addr_out</b> to the address it contains (in host order). + * Return 0 on success, -1 on error. */ static int parse_socks4a_resolve_response(const char *response, size_t len, @@ -104,7 +105,7 @@ parse_socks4a_resolve_response(const char *response, size_t len, /** Send a resolve request for <b>hostname</b> to the Tor listening on * <b>sockshost</b>:<b>socksport</b>. Store the resulting IPv4 - * address (in host order) into <b>result_addr</b>. + * address (in host order) into *<b>result_addr</b>. */ static int do_resolve(const char *hostname, uint32_t sockshost, uint16_t socksport, @@ -247,3 +248,4 @@ main(int argc, char **argv) printf("%s\n", buf); return 0; } + |