summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2014-03-05 09:06:29 +0100
committerSteven Barth <steven@midlink.org>2014-03-05 09:06:29 +0100
commit69128a57204554ce433cbc8860c8c1077092ac58 (patch)
treea21172a9019d9283955b9076f7ed500a7817bd25 /src
parent6fde63d392fcb57418eafd4916726bd8c5393914 (diff)
downloadodhcp6c-69128a57204554ce433cbc8860c8c1077092ac58.tar.gz
Set default for min-update-interval to 30
Diffstat (limited to 'src')
-rw-r--r--src/odhcp6c.c2
-rw-r--r--src/odhcp6c.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/odhcp6c.c b/src/odhcp6c.c
index 798598f..3c6b3b0 100644
--- a/src/odhcp6c.c
+++ b/src/odhcp6c.c
@@ -453,7 +453,7 @@ static int usage(void)
" -f Don't send Client FQDN option\n"
" -k Don't send a RELEASE when stopping\n"
" -t <seconds> Maximum timeout for DHCPv6-SOLICIT (3600)\n"
- " -m <seconds> Minimum time between accepting updates (60)\n"
+ " -m <seconds> Minimum time between accepting updates (30)\n"
"\nInvocation options:\n"
" -p <pidfile> Set pidfile (/var/run/odhcp6c.pid)\n"
" -d Daemonize\n"
diff --git a/src/odhcp6c.h b/src/odhcp6c.h
index 285f6b1..f9a3fec 100644
--- a/src/odhcp6c.h
+++ b/src/odhcp6c.h
@@ -31,7 +31,7 @@
#define DHCPV6_REB_MAX_RT 600
#define DHCPV6_INF_MAX_RT 3600
-#define DEFAULT_MIN_UPDATE_INTERVAL 60
+#define DEFAULT_MIN_UPDATE_INTERVAL 30
enum dhcvp6_opt {
DHCPV6_OPT_CLIENTID = 1,