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

Documentation for new cbt accessors

parent 49b8acc6
No related branches found
No related tags found
No related merge requests found
......@@ -36,24 +36,31 @@ static int unit_tests = 0;
#define unit_tests 0
#endif
/** Return a pointer to the data structure describing our current circuit
* build time history and computations. */
const circuit_build_times_t *
get_circuit_build_times(void)
{
return &circ_times;
}
/** As get_circuit_build_times, but return a mutable pointer. */
circuit_build_times_t *
get_circuit_build_times_mutable(void)
{
return &circ_times;
}
/** Return the time to wait before actually closing an under-construction, in
* milliseconds. */
double
get_circuit_build_close_time_ms(void)
{
return circ_times.close_ms;
}
/** Return the time to wait before giving up on an under-construction circuit,
* in milliseconds. */
double
get_circuit_build_timeout_ms(void)
{
......
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