execvp(global_argv[0], global_argv);
}
-static struct uloop_timeout restart_timer = {
- .cb = netifd_do_restart,
-};
+static void netifd_do_reload(struct uloop_timeout *timeout)
+{
+ config_init_interfaces(NULL);
+}
+
+static struct uloop_timeout main_timer;
+
+void netifd_reload(void)
+{
+ main_timer.cb = netifd_do_reload;
+ uloop_timeout_set(&main_timer, 100);
+}
void netifd_restart(void)
{
+ main_timer.cb = netifd_do_restart;
interface_set_down(NULL);
- uloop_timeout_set(&restart_timer, 1000);
+ uloop_timeout_set(&main_timer, 1000);
}
static int usage(const char *progname)
extern const char *main_path;
void netifd_restart(void);
+void netifd_reload(void);
#endif
return 0;
}
+static int
+netifd_handle_reload(struct ubus_context *ctx, struct ubus_object *obj,
+ struct ubus_request_data *req, const char *method,
+ struct blob_attr *msg)
+{
+ netifd_reload();
+ return 0;
+}
+
static struct ubus_method main_object_methods[] = {
UBUS_METHOD("add_device", netifd_handle_device, dev_policy),
UBUS_METHOD("remove_device", netifd_handle_device, dev_policy),
{ .name = "restart", .handler = netifd_handle_restart },
+ { .name = "reload", .handler = netifd_handle_reload },
};
static struct ubus_object_type main_object_type =