From 41842d3f91733786cb4d2bcdc6ca0c3a1a1c594b Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 10 Oct 2011 22:17:03 +0200 Subject: add some code for keeping track of dns servers and search domains and for writing resolv.conf --- main.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 02dd1e5..5770782 100644 --- a/main.c +++ b/main.c @@ -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 to the ubus socket\n" " -p : Path to netifd addons (default: %s)\n" " -h : Path to the hotplug script\n" + " -r : 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]); } -- cgit v1.2.1