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/dirserv.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/dirserv.c')
-rw-r--r-- | src/or/dirserv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 8694da702f..914fcc2f49 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1156,7 +1156,7 @@ directory_fetches_from_authorities(or_options_t *options) return 1; } -/* Return 1 if we should fetch new networkstatuses, descriptors, etc +/** Return 1 if we should fetch new networkstatuses, descriptors, etc * on the "mirror" schedule rather than the "client" schedule. */ int @@ -1165,7 +1165,7 @@ directory_fetches_dir_info_early(or_options_t *options) return directory_fetches_from_authorities(options); } -/* Return 1 if we should fetch new networkstatuses, descriptors, etc +/** Return 1 if we should fetch new networkstatuses, descriptors, etc * on a very passive schedule -- waiting long enough for ordinary clients * to probably have the info we want. These would include bridge users, * and maybe others in the future e.g. if a Tor client uses another Tor @@ -1592,6 +1592,7 @@ dirserv_get_runningrouters(void) "v1 network status list", V1_AUTHORITY); } +/* DOCDOC */ cached_dir_t * dirserv_get_consensus(void) { |