X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=src%2Fodhcp6c.c;h=6ce9adf33ce344548b72ed700d40f9c3934066b0;hb=d09e94fff82440cedf04f2e0cfe1ede8a0ab0600;hp=88f2ae5c7228c1b51e5781fdeb075c4ed4dc99a8;hpb=85cdc08d7249ec8f6d2e0b94ea3cd5ff2ee141ad;p=odhcp6c.git diff --git a/src/odhcp6c.c b/src/odhcp6c.c index 88f2ae5..6ce9adf 100644 --- a/src/odhcp6c.c +++ b/src/odhcp6c.c @@ -1,5 +1,5 @@ /** - * Copyright (C) 2012 Steven Barth + * Copyright (C) 2012-2013 Steven Barth * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License v2 as published by @@ -40,8 +40,8 @@ static uint8_t *state_data[_STATE_MAX] = {NULL}; static size_t state_len[_STATE_MAX] = {0}; static volatile int do_signal = 0; -static int urandom_fd = -1; -static bool bound = false, allow_slaac_only = true, release = true; +static int urandom_fd = -1, allow_slaac_only = 15; +static bool bound = false, release = true; int main(_unused int argc, char* const argv[]) @@ -58,10 +58,10 @@ int main(_unused int argc, char* const argv[]) bool help = false, daemonize = false; int logopt = LOG_PID; int c, request_pd = 0; - while ((c = getopt(argc, argv, "SN:P:c:r:s:khedp:")) != -1) { + while ((c = getopt(argc, argv, "S::N:P:c:r:s:khedp:")) != -1) { switch (c) { case 'S': - allow_slaac_only = false; + allow_slaac_only = (optarg) ? atoi(optarg) : -1; break; case 'N': @@ -76,7 +76,6 @@ int main(_unused int argc, char* const argv[]) break; case 'P': - allow_slaac_only = false; request_pd = strtoul(optarg, NULL, 10); if (request_pd == 0) request_pd = -1; @@ -307,7 +306,7 @@ static int usage(void) const char buf[] = "Usage: odhcp6c [options] \n" "\nFeature options:\n" - " -S Don't allow SLAAC-only (implied by -P)\n" + " -S