diff options
Diffstat (limited to 'common/tables.c')
-rw-r--r-- | common/tables.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/common/tables.c b/common/tables.c index 50d9cf10..be37737c 100644 --- a/common/tables.c +++ b/common/tables.c @@ -3,7 +3,7 @@ Tables of information... */ /* - * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2022 Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1995-2003 by Internet Software Consortium * * This Source Code Form is subject to the terms of the Mozilla Public @@ -19,8 +19,8 @@ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Internet Systems Consortium, Inc. - * 950 Charter Street - * Redwood City, CA 94063 + * PO Box 360 + * Newmarket, NH 03857 USA * <info@isc.org> * https://www.isc.org/ * @@ -86,7 +86,7 @@ HASH_FUNCTIONS (option_code, const unsigned *, struct option, named enumeration. Named enumerations are tracked in parse.c. d - Domain name (e.g., FOO or FOO.BAR) no quotes, on-wire format is RFC 1035. - D - Domain list (e.g., "example.com eng.example.com") quoted, + D - Domain list (e.g., "example.com eng.example.com") quoted, on-wire format is RFC 1035. c - When following a 'D' atom, enables compression pointers. Z - Zero-length option @@ -209,6 +209,9 @@ static struct option dhcp_options[] = { { "pcode", "t", &dhcp_universe, 100, 1 }, { "tcode", "t", &dhcp_universe, 101, 1 }, #endif +#if defined(RFC8925_OPTIONS) + { "v6-only-preferred", "L", &dhcp_universe, 108, 1 }, +#endif { "netinfo-server-address", "Ia", &dhcp_universe, 112, 1 }, { "netinfo-server-tag", "t", &dhcp_universe, 113, 1 }, { "default-url", "t", &dhcp_universe, 114, 1 }, |