diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2009-01-04 19:59:35 +0000 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2009-01-04 19:59:35 +0000 |
commit | 26482e855b376b0f8ec795dc8c293b74bc66fefd (patch) | |
tree | cc1509566419386b6dfdeb52a74178e0e8926db7 /src | |
parent | 92ce533f71428c324cadcd4e8feae933a8622a81 (diff) | |
download | tor-26482e855b376b0f8ec795dc8c293b74bc66fefd.tar.gz tor-26482e855b376b0f8ec795dc8c293b74bc66fefd.zip |
Document some variables used for generating statistics on usage of V0 hidden service directory authorities.
svn:r17890
Diffstat (limited to 'src')
-rw-r--r-- | src/or/rephist.c | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c index 38dbcf7824..03bdb3bf40 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -1915,15 +1915,24 @@ typedef struct hs_usage_current_observation_period_t { /** Usage statistics for the current observation period. */ static hs_usage_current_observation_period_t *current_period = NULL; -/* DOCDOC publish_total */ + +/* Total number of descriptor publish requests in the current observation + * period. */ static hs_usage_service_related_observation_t *publish_total = NULL; -/* DOCDOC publish_novel */ + +/* Number of descriptor publish requests for services that have not been + * seen before in the current observation period. */ static hs_usage_service_related_observation_t *publish_novel = NULL; -/* DOCDOC fetch_total */ + +/* Total number of descriptor fetch requests in the current observation + * period. */ static hs_usage_service_related_observation_t *fetch_total = NULL; -/* DOCDOC fetch_successful */ + +/* Number of successful descriptor fetch requests in the current + * observation period. */ static hs_usage_service_related_observation_t *fetch_successful = NULL; -/* DOCDOC descs */ + +/* Number of descriptors stored in the current observation period. */ static hs_usage_general_period_related_observations_t *descs = NULL; /** Creates an empty ordered list element. */ |