aboutsummaryrefslogtreecommitdiff
path: root/src/feature/control/control_events.h
diff options
context:
space:
mode:
authorNeel Chauhan <neel@neelc.org>2019-11-26 20:57:33 -0500
committerNeel Chauhan <neel@neelc.org>2019-11-26 22:12:23 -0500
commit99cf3f99c02752f8d6d89fe94272454c55285b66 (patch)
treeba8e84e5ebedc82a38f2a4249403b77992c4e510 /src/feature/control/control_events.h
parentfadd292bf05e6fedf61e25f43079920c9ea3c117 (diff)
downloadtor-99cf3f99c02752f8d6d89fe94272454c55285b66.tar.gz
tor-99cf3f99c02752f8d6d89fe94272454c55285b66.zip
Make control_event_conf_changed() take a config_line_t
Diffstat (limited to 'src/feature/control/control_events.h')
-rw-r--r--src/feature/control/control_events.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/feature/control/control_events.h b/src/feature/control/control_events.h
index 34986fdb89..b0cf429fe3 100644
--- a/src/feature/control/control_events.h
+++ b/src/feature/control/control_events.h
@@ -13,6 +13,7 @@
#define TOR_CONTROL_EVENTS_H
#include "core/or/ocirc_event.h"
+#include "lib/encoding/confline.h"
/** Used to indicate the type of a CIRC_MINOR event passed to the controller.
* The various types are defined in control-spec.txt . */
@@ -157,7 +158,7 @@ int control_event_server_error(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_conf_changed(const config_line_t *elements);
int control_event_buildtimeout_set(buildtimeout_set_event_t type,
const char *args);
int control_event_signal(uintptr_t signal);