diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-22 17:53:04 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-22 17:53:04 +0000 |
commit | 1e5f4574613be3f26cd05f2873fd54ee526a63d7 (patch) | |
tree | 614832936d9b2e3592f76f400a001d933fcaf14f /src/or/geoip.c | |
parent | 167d266dbf618c856a87ac482668cd848651ab62 (diff) | |
download | tor-1e5f4574613be3f26cd05f2873fd54ee526a63d7.tar.gz tor-1e5f4574613be3f26cd05f2873fd54ee526a63d7.zip |
Fix most DOCDOCs remaining and/or added by redox.
svn:r17734
Diffstat (limited to 'src/or/geoip.c')
-rw-r--r-- | src/or/geoip.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/geoip.c b/src/or/geoip.c index a0ac6039f2..65d03aec69 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -438,7 +438,8 @@ _c_hist_compare(const void **_a, const void **_b) * are willing to talk about it? */ #define GEOIP_MIN_OBSERVATION_TIME (12*60*60) -/* DOCDOC round_to_next_multiple_of */ +/** Return the lowest x such that x is at least <b>number</b>, and x modulo + * <b>divisor</b> == 0. */ static INLINE unsigned round_to_next_multiple_of(unsigned number, unsigned divisor) { @@ -589,7 +590,7 @@ geoip_get_request_history(time_t now, geoip_client_action_t action) return result; } -/* DOCDOC dump_geoip_stats */ +/** Store all our geoip statistics into $DATADIR/geoip-stats. */ void dump_geoip_stats(void) { |