only use -g3 with -DDEBUG
[project/netifd.git] / main.c
diff --git a/main.c b/main.c
index 69aa5cd..7d7bfcb 100644 (file)
--- a/main.c
+++ b/main.c
@@ -5,13 +5,34 @@
 
 #include "netifd.h"
 #include "ubus.h"
+#include "config.h"
+#include "interface.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)
+{
+       interface_set_down(NULL);
+       uloop_timeout_set(&restart_timer, 1000);
+}
 
 static int usage(const char *progname)
 {
        fprintf(stderr, "Usage: %s [options]\n"
                "Options:\n"
                " -s <path>:            Path to the ubus socket\n"
-               "\n", progname);
+               " -p <path>:            Path to netifd addons (default: %s)\n"
+               "\n", progname, main_path);
 
        return 1;
 }
@@ -21,11 +42,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]);
                }