From: Nick Mathewson Date: Wed, 16 Mar 2011 22:10:15 +0000 (-0400) Subject: Document a few more members. X-Git-Tag: tor-0.2.3.1-alpha~64^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dfa244484ff9c52d545daa620e034b4d03f969c;p=thirdparty%2Ftor.git Document a few more members. --- diff --git a/src/or/config.c b/src/or/config.c index d4be2072d8..5719a64088 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -4770,10 +4770,10 @@ options_save_current(void) } /** Mapping from a unit name to a multiplier for converting that unit into a - * base unit. */ + * base unit. Used by config_parse_unit. */ struct unit_table_t { - const char *unit; - uint64_t multiplier; + const char *unit; /**< The name of the unit */ + uint64_t multiplier; /**< How many of the base unit appear in this unit */ }; /** Table to map the names of memory units to the number of bytes they