* by SETCONF requests and RELOAD/SIGHUP signals. The <b>changes</b> are
* a smartlist_t containing (key, value, ...) pairs in sequence.
* <b>changes</b> can be NULL. */
-int
+void
control_event_conf_changed(const config_line_t *changes)
{
char *result;
smartlist_t *lines;
if (!EVENT_IS_INTERESTING(EVENT_CONF_CHANGED) || !changes) {
- return 0;
+ return;
}
lines = smartlist_new();
for (const config_line_t *line = changes; line; line = line->next) {
tor_free(result);
SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
smartlist_free(lines);
- return 0;
}
/** We just generated a new summary of which countries we've seen clients
int control_event_guard(const char *nickname, const char *digest,
const char *status);
-int control_event_conf_changed(const struct config_line_t *changes);
+void control_event_conf_changed(const struct config_line_t *changes);
int control_event_buildtimeout_set(buildtimeout_set_event_t type,
const char *args);
int control_event_signal(uintptr_t signal);