diff options
author | David Hankins <dhankins@isc.org> | 2007-04-03 16:46:03 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2007-04-03 16:46:03 +0000 |
commit | 4d2eaafb35f198cb239c9f8ca2b827f794b497ef (patch) | |
tree | 56c6c00af4b9c9b8b76232a8ed9212e51b65a03a /server/stables.c | |
parent | 23e10d371304342e1b47a9bd7b19f71a241c7d8e (diff) | |
download | isc-dhcp-4d2eaafb35f198cb239c9f8ca2b827f794b497ef.tar.gz |
- A new server config option, 'do-reverse-updates', has been added
which causes the server to abstain from performing updates on PTR
records. Thanks to a patch from Christof Chen at Allianz.
[ISC-Bugs #16781]
Diffstat (limited to 'server/stables.c')
-rw-r--r-- | server/stables.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/stables.c b/server/stables.c index 60597fd1..011a9351 100644 --- a/server/stables.c +++ b/server/stables.c @@ -3,7 +3,7 @@ Tables of information only used by server... */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2007 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1995-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -34,7 +34,7 @@ #ifndef lint static char copyright[] = -"$Id: stables.c,v 1.35 2007/01/05 23:19:22 dhankins Exp $ Copyright (c) 2004 Internet Systems Consortium. All rights reserved.\n"; +"$Id: stables.c,v 1.36 2007/04/03 16:46:03 dhankins Exp $ Copyright (c) 2004-2007 Internet Systems Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -236,6 +236,7 @@ static struct option server_options[] = { { "update-conflict-detection", "f", &server_universe, 48, 1 }, { "leasequery", "f", &server_universe, 49, 1 }, { "adaptive-lease-time-threshold", "B", &server_universe, 50, 1 }, + { "do-reverse-updates", "f", &server_universe, 51, 1 }, { NULL, NULL, NULL, 0, 0 } }; |