aboutsummaryrefslogtreecommitdiff
path: root/src/or/control.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-08-21 12:37:35 -0400
committerNick Mathewson <nickm@torproject.org>2013-08-22 10:15:57 -0400
commit8920fc545738393fc8320b61bac897f67a66e6c9 (patch)
tree06fef01046a2b1c765531a1ee47eebaf46193f66 /src/or/control.h
parent79cad08b4f9afd13a7151b8e15ae6481df82478f (diff)
downloadtor-8920fc545738393fc8320b61bac897f67a66e6c9.tar
tor-8920fc545738393fc8320b61bac897f67a66e6c9.tar.gz
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/control.h b/src/or/control.h
index be9476ea3..1a44768ce 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);