summaryrefslogtreecommitdiff
path: root/server/stables.c
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2007-05-08 23:05:22 +0000
committerDavid Hankins <dhankins@isc.org>2007-05-08 23:05:22 +0000
commit98bd7ca0990e6d88e3345d3bc966ebe8216691a7 (patch)
treec4437ca467e8f733d530170a5c445747b2defd68 /server/stables.c
parent74dc3e0b2786c46956e7517398ae6f7c6dad52d7 (diff)
downloadisc-dhcp-98bd7ca0990e6d88e3345d3bc966ebe8216691a7.tar.gz
DHCPv6 branch merged to HEAD.
Diffstat (limited to 'server/stables.c')
-rw-r--r--server/stables.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/server/stables.c b/server/stables.c
index 3d68e180..2ac63421 100644
--- a/server/stables.c
+++ b/server/stables.c
@@ -34,7 +34,7 @@
#ifndef lint
static char copyright[] =
-"$Id: stables.c,v 1.37 2007/04/27 22:48:00 each Exp $ Copyright (c) 2004-2007 Internet Systems Consortium. All rights reserved.\n";
+"$Id: stables.c,v 1.38 2007/05/08 23:05:22 dhankins Exp $ Copyright (c) 2004 Internet Systems Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -238,6 +238,7 @@ static struct option server_options[] = {
{ "adaptive-lease-time-threshold", "B", &server_universe, 50, 1 },
{ "do-reverse-updates", "f", &server_universe, 51, 1 },
{ "fqdn-reply", "f", &server_universe, 52, 1 },
+ { "preferred-lifetime", "T", &server_universe, 53, 1 },
{ NULL, NULL, NULL, 0, 0 }
};
@@ -250,7 +251,7 @@ struct enumeration_value ddns_styles_values [] = {
struct enumeration ddns_styles = {
(struct enumeration *)0,
- "ddns-styles",
+ "ddns-styles", 1,
ddns_styles_values
};
@@ -320,7 +321,7 @@ struct enumeration_value syslog_values [] = {
struct enumeration syslog_enum = {
(struct enumeration *)0,
- "syslog-facilities",
+ "syslog-facilities", 1,
syslog_values
};
@@ -331,6 +332,7 @@ void initialize_server_option_spaces()
/* Set up the Relay Agent Information Option suboption space... */
agent_universe.name = "agent";
+ agent_universe.concat_duplicates = 0;
agent_universe.option_state_dereference =
linked_option_state_dereference;
agent_universe.lookup_func = lookup_linked_option;
@@ -372,6 +374,7 @@ void initialize_server_option_spaces()
/* Set up the server option universe... */
server_universe.name = "server";
+ server_universe.concat_duplicates = 0;
server_universe.lookup_func = lookup_hashed_option;
server_universe.option_state_dereference =
hashed_option_state_dereference;