Skip to content
Snippets Groups Projects
Commit e6877071 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Add missing documentation for get_net_param_from_list

parent 228ac47c
No related branches found
No related tags found
No related merge requests found
......@@ -2444,7 +2444,12 @@ networkstatus_getinfo_by_purpose(const char *purpose_string, time_t now)
return answer;
}
/* DOCDOC get_net_param_from_list */
/**
* Search through a smartlist of "key=int32" strings for a value beginning
* with "param_name=". If one is found, clip it to be between min_val and
* max_val inclusive and return it. If one is not found, return
* default_val.
***/
static int32_t
get_net_param_from_list(smartlist_t *net_params, const char *param_name,
int32_t default_val, int32_t min_val, int32_t max_val)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment