diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-22 14:56:28 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-22 14:56:28 +0000 |
commit | 1725c0c8a50cb4de34157aee720af6753821f80c (patch) | |
tree | ff61e0f1234abc1a087456869a929d8a88d19463 /src/or/dnsserv.c | |
parent | ef1be06de6d47daea90f8fccf9d627d083d4c071 (diff) | |
download | tor-1725c0c8a50cb4de34157aee720af6753821f80c.tar.gz tor-1725c0c8a50cb4de34157aee720af6753821f80c.zip |
Add DOCDOC comments for all undocumented functions. Add missing *s to other comments so that they will get recognized as doxygen.
svn:r17729
Diffstat (limited to 'src/or/dnsserv.c')
-rw-r--r-- | src/or/dnsserv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/dnsserv.c b/src/or/dnsserv.c index d9ec3f0fa0..ff8d76e3b3 100644 --- a/src/or/dnsserv.c +++ b/src/or/dnsserv.c @@ -14,7 +14,7 @@ const char dnsserv_c_id[] = #include "or.h" #include "eventdns.h" -/* Helper function: called by evdns whenever the client sends a request to our +/** Helper function: called by evdns whenever the client sends a request to our * DNSPort. We need to eventually answer the request <b>req</b>. */ static void @@ -149,7 +149,7 @@ evdns_server_callback(struct evdns_server_request *req, void *_data) tor_free(q_name); } -/* Helper function: called whenever the client sends a resolve request to our +/** Helper function: called whenever the client sends a resolve request to our * controller. We need to eventually answer the request <b>req</b>. * Returns 0 if the controller will be getting (or has gotten) an event in * response; -1 if we couldn't launch the request. @@ -291,7 +291,7 @@ dnsserv_resolved(edge_connection_t *conn, conn->dns_server_request = NULL; } -/* Set up the evdns server port for the UDP socket on <b>conn</b>, which +/** Set up the evdns server port for the UDP socket on <b>conn</b>, which * must be an AP_DNS_LISTENER */ void dnsserv_configure_listener(connection_t *conn) |