tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 9663ac00275c808b478474e9d6aa3a194612424f
parent 88796637e521c9879f8743a8b6647311a27a9691
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed,  6 Nov 2019 13:07:13 -0500

int_type_params_t: add documentation.

Diffstat:
Msrc/lib/confmgt/type_defs.c | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/lib/confmgt/type_defs.c b/src/lib/confmgt/type_defs.c @@ -90,9 +90,12 @@ static const var_type_fns_t string_fns = { // These types are implemented as int, possibly with a restricted range. ///// +/** + * Parameters for parsing an integer type. + **/ typedef struct int_type_params_t { - int minval; - int maxval; + int minval; /**< Lowest allowed value */ + int maxval; /**< Highest allowed value */ } int_parse_params_t; static const int_parse_params_t INT_PARSE_UNRESTRICTED = {