Reload configuration through control socket
[oweals/tinc.git] / src / control.c
index 6a39e02eeca2395aca9f9f2406d394c86fa7cf6d..57e0ce09816061e394cb17b53ec7b857c6898435 100644 (file)
@@ -130,6 +130,12 @@ static void handle_control_data(struct bufferevent *event, void *data) {
                goto respond;
        }
 
+       if(req.type == REQ_RELOAD) {
+               logger(LOG_NOTICE, _("Got '%s' command"), "reload");
+               res.res_errno = reload_configuration();
+               goto respond;
+       }
+
        logger(LOG_DEBUG, _("Malformed control command received"));
        res.res_errno = EINVAL;