diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-08-21 12:37:35 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-08-22 10:15:57 -0400 |
commit | 8920fc545738393fc8320b61bac897f67a66e6c9 (patch) | |
tree | 06fef01046a2b1c765531a1ee47eebaf46193f66 /src/or/control.h | |
parent | 79cad08b4f9afd13a7151b8e15ae6481df82478f (diff) | |
download | tor-8920fc545738393fc8320b61bac897f67a66e6c9.tar.gz tor-8920fc545738393fc8320b61bac897f67a66e6c9.zip |
Hide the contents of the circuit_build_times structure.
There were only two functions outside of circuitstats that actually
wanted to know what was inside this. Making the structure itself
hidden should help isolation and prevent us from spaghettifying the
thing more.
Diffstat (limited to 'src/or/control.h')
-rw-r--r-- | src/or/control.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/control.h b/src/or/control.h index be9476ea3f..1a44768cee 100644 --- a/src/or/control.h +++ b/src/or/control.h @@ -73,8 +73,8 @@ int control_event_server_status(int severity, const char *format, ...) int control_event_guard(const char *nickname, const char *digest, const char *status); int control_event_conf_changed(const smartlist_t *elements); -int control_event_buildtimeout_set(const circuit_build_times_t *cbt, - buildtimeout_set_event_t type); +int control_event_buildtimeout_set(buildtimeout_set_event_t type, + const char *args); int control_event_signal(uintptr_t signal); int init_control_cookie_authentication(int enabled); |