X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=main.c;h=da5ae092ad52a608046bc5eed53695fac5b7797f;hp=dc69abc15c08a6a2bb7b61fc4d70afe46b69fcf6;hb=cfc905f003aefe4735f8645c561f789ffd0b1f30;hpb=3fa53680c85a6e029a3e7b4d673bffee4795fa52 diff --git a/main.c b/main.c index dc69abc..da5ae09 100644 --- a/main.c +++ b/main.c @@ -7,12 +7,30 @@ #include "ubus.h" #include "config.h" +const char *main_path = "."; +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" "Options:\n" " -s : Path to the ubus socket\n" - "\n", progname); + " -p : Path to netifd addons (default: %s)\n" + "\n", progname, main_path); return 1; } @@ -22,11 +40,16 @@ 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': socket = optarg; break; + case 'p': + main_path = optarg; + break; default: return usage(argv[0]); }