summaryrefslogtreecommitdiff
path: root/server/stables.c
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2006-07-19 17:14:55 +0000
committerDavid Hankins <dhankins@isc.org>2006-07-19 17:14:55 +0000
commit3004bebf47f6b6422545d68bea780ab11ae29bbd (patch)
tree3a538278fdeced5afd4b7fa70defb5fd7ac5cfe6 /server/stables.c
parente77c575fc4c8c2a5b53b4008df5bd6709855c4a0 (diff)
downloadisc-dhcp-3004bebf47f6b6422545d68bea780ab11ae29bbd.tar.gz
- A new DDNS related server option, update-conflict-detection, has been
added. If this option is enabled, dhcpd will perform normal DHCID conflict resolution (the default). If this option is disabled, it will instead trust the assigned name implicitly (removing any other bindings on that name). This option has not been made available in dhclient. [ISC-Bugs #16165]
Diffstat (limited to 'server/stables.c')
-rw-r--r--server/stables.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/stables.c b/server/stables.c
index 7c7df5ca..4bfbaf25 100644
--- a/server/stables.c
+++ b/server/stables.c
@@ -34,7 +34,7 @@
#ifndef lint
static char copyright[] =
-"$Id: stables.c,v 1.31 2006/07/17 15:16:43 dhankins Exp $ Copyright (c) 2004 Internet Systems Consortium. All rights reserved.\n";
+"$Id: stables.c,v 1.32 2006/07/19 17:14:55 dhankins Exp $ Copyright (c) 2004 Internet Systems Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -233,6 +233,7 @@ static struct option server_options[] = {
{ "do-forward-updates", "f", &server_universe, 45, 1 },
{ "ping-timeout", "T", &server_universe, 46, 1 },
{ "infinite-is-reserved", "f", &server_universe, 47, 1 },
+ { "update-conflict-detection", "f", &server_universe, 48, 1 },
{ NULL, NULL, NULL, 0, 0 }
};