diff options
author | David Hankins <dhankins@isc.org> | 2006-07-22 02:24:16 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2006-07-22 02:24:16 +0000 |
commit | dba5803b955ada381d137b946f96cbb3604421ce (patch) | |
tree | fbeedd8ec7cddfa9484d74b7cb6291d66564d59e /common/tables.c | |
parent | 8f4c32a1012bce633c6292d6d935b50cb093496f (diff) | |
download | isc-dhcp-DHCPv6_parsing_base.tar.gz |
- Support for compressed 'domain name list' style DHCP option contents, andDHCPv6_parsing_base
in particular the domain search option (#119) was added. [ISC-Bugs #15934]
Diffstat (limited to 'common/tables.c')
-rw-r--r-- | common/tables.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/tables.c b/common/tables.c index caad763d..eefad58f 100644 --- a/common/tables.c +++ b/common/tables.c @@ -34,7 +34,7 @@ #ifndef lint static char copyright[] = -"$Id: tables.c,v 1.55 2006/06/01 20:23:17 dhankins Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n"; +"$Id: tables.c,v 1.56 2006/07/22 02:24:16 dhankins Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -94,6 +94,7 @@ HASH_FUNCTIONS (option_code, const unsigned *, struct option, followed by a '.'. The width of the data is specified in the named enumeration. Named enumerations are tracked in parse.c. d - Domain name (i.e., FOO or FOO.BAR). + D - Domain list (i.e., example.com eng.example.com) */ struct universe dhcp_universe; @@ -185,6 +186,7 @@ static struct option dhcp_options[] = { { "nds-context", "t", &dhcp_universe, 87, 1 }, { "uap-servers", "t", &dhcp_universe, 98, 1 }, { "subnet-selection", "I", &dhcp_universe, 118, 1 }, + { "domain-search", "D", &dhcp_universe, 119, 1 }, { "vivco", "Evendor-class.", &dhcp_universe, 124, 1 }, { "vivso", "Evendor.", &dhcp_universe, 125, 1 }, { NULL, NULL, NULL, 0, 0 } |