diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-10 22:17:03 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-11 15:23:44 +0200 |
commit | 41842d3f91733786cb4d2bcdc6ca0c3a1a1c594b (patch) | |
tree | ac120ef2e43cc60b18a81ea9fbf5f6f1e60c8f54 /main.c | |
parent | 34a1a4bad31ba6f138cd6a98249c774ff66285d1 (diff) |
add some code for keeping track of dns servers and search domains and for writing resolv.conf
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -12,6 +12,7 @@ unsigned int debug_mask = 0; const char *main_path = DEFAULT_MAIN_PATH; +const char *resolv_conf = DEFAULT_RESOLV_CONF; static char **global_argv; static void netifd_do_restart(struct uloop_timeout *timeout) @@ -47,6 +48,7 @@ static int usage(const char *progname) " -s <path>: Path to the ubus socket\n" " -p <path>: Path to netifd addons (default: %s)\n" " -h <path>: Path to the hotplug script\n" + " -r <path>: Path to resolv.conf\n" " (default: "DEFAULT_HOTPLUG_PATH")\n" "\n", progname, main_path); @@ -60,7 +62,7 @@ int main(int argc, char **argv) global_argv = argv; - while ((ch = getopt(argc, argv, "d:s:")) != -1) { + while ((ch = getopt(argc, argv, "d:s:p:h:r:")) != -1) { switch(ch) { case 'd': debug_mask = strtoul(optarg, NULL, 0); @@ -74,6 +76,9 @@ int main(int argc, char **argv) case 'h': hotplug_cmd_path = optarg; break; + case 'r': + resolv_conf = optarg; + break; default: return usage(argv[0]); } |