diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -7,6 +7,22 @@ #include "ubus.h" #include "config.h" +static char **global_argv; + +static void netifd_do_restart(struct uloop_timeout *timeout) +{ + execvp(global_argv[0], global_argv); +} + +static struct uloop_timeout restart_timer = { + .cb = netifd_do_restart, +}; + +void netifd_restart(void) +{ + uloop_timeout_set(&restart_timer, 1000); +} + static int usage(const char *progname) { fprintf(stderr, "Usage: %s [options]\n" @@ -22,6 +38,8 @@ int main(int argc, char **argv) const char *socket = NULL; int ch; + global_argv = argv; + while ((ch = getopt(argc, argv, "s:")) != -1) { switch(ch) { case 's': |