Deleted Added
full compact
tables.c (183974) tables.c (228259)
1/* $OpenBSD: tables.c,v 1.4 2004/05/04 20:28:40 deraadt Exp $ */
2
3/* Tables of information... */
4
5/*
6 * Copyright (c) 1995, 1996 The Internet Software Consortium.
7 * All rights reserved.
8 *

--- 27 unchanged lines hidden (view full) ---

36 * This software has been written for the Internet Software Consortium
37 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
38 * Enterprises. To learn more about the Internet Software Consortium,
39 * see ``http://www.vix.com/isc''. To learn more about Vixie
40 * Enterprises, see ``http://www.vix.com''.
41 */
42
43#include <sys/cdefs.h>
1/* $OpenBSD: tables.c,v 1.4 2004/05/04 20:28:40 deraadt Exp $ */
2
3/* Tables of information... */
4
5/*
6 * Copyright (c) 1995, 1996 The Internet Software Consortium.
7 * All rights reserved.
8 *

--- 27 unchanged lines hidden (view full) ---

36 * This software has been written for the Internet Software Consortium
37 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
38 * Enterprises. To learn more about the Internet Software Consortium,
39 * see ``http://www.vix.com/isc''. To learn more about Vixie
40 * Enterprises, see ``http://www.vix.com''.
41 */
42
43#include <sys/cdefs.h>
44__FBSDID("$FreeBSD: head/sbin/dhclient/tables.c 183974 2008-10-17 13:28:53Z brooks $");
44__FBSDID("$FreeBSD: head/sbin/dhclient/tables.c 228259 2011-12-04 14:44:31Z dumbbell $");
45
46#include "dhcpd.h"
47
48/*
49 * DHCP Option names, formats and codes, from RFC1533.
50 *
51 * Format codes:
52 *

--- 126 unchanged lines hidden (view full) ---

179 { "option-111", "X", &dhcp_universe, 111 },
180 { "option-112", "X", &dhcp_universe, 112 },
181 { "option-113", "X", &dhcp_universe, 113 },
182 { "option-114", "X", &dhcp_universe, 114 },
183 { "option-115", "X", &dhcp_universe, 115 },
184 { "option-116", "X", &dhcp_universe, 116 },
185 { "option-117", "X", &dhcp_universe, 117 },
186 { "option-118", "X", &dhcp_universe, 118 },
45
46#include "dhcpd.h"
47
48/*
49 * DHCP Option names, formats and codes, from RFC1533.
50 *
51 * Format codes:
52 *

--- 126 unchanged lines hidden (view full) ---

179 { "option-111", "X", &dhcp_universe, 111 },
180 { "option-112", "X", &dhcp_universe, 112 },
181 { "option-113", "X", &dhcp_universe, 113 },
182 { "option-114", "X", &dhcp_universe, 114 },
183 { "option-115", "X", &dhcp_universe, 115 },
184 { "option-116", "X", &dhcp_universe, 116 },
185 { "option-117", "X", &dhcp_universe, 117 },
186 { "option-118", "X", &dhcp_universe, 118 },
187 { "option-119", "X", &dhcp_universe, 119 },
187 { "domain-search", "t", &dhcp_universe, 119 },
188 { "option-120", "X", &dhcp_universe, 120 },
189 { "classless-routes", "BA", &dhcp_universe, 121 },
190 { "option-122", "X", &dhcp_universe, 122 },
191 { "option-123", "X", &dhcp_universe, 123 },
192 { "option-124", "X", &dhcp_universe, 124 },
193 { "option-125", "X", &dhcp_universe, 125 },
194 { "option-126", "X", &dhcp_universe, 126 },
195 { "option-127", "X", &dhcp_universe, 127 },

--- 199 unchanged lines hidden (view full) ---

395 DHO_SMTP_SERVER,
396 DHO_POP_SERVER,
397 DHO_NNTP_SERVER,
398 DHO_WWW_SERVER,
399 DHO_FINGER_SERVER,
400 DHO_IRC_SERVER,
401 DHO_STREETTALK_SERVER,
402 DHO_STREETTALK_DA_SERVER,
188 { "option-120", "X", &dhcp_universe, 120 },
189 { "classless-routes", "BA", &dhcp_universe, 121 },
190 { "option-122", "X", &dhcp_universe, 122 },
191 { "option-123", "X", &dhcp_universe, 123 },
192 { "option-124", "X", &dhcp_universe, 124 },
193 { "option-125", "X", &dhcp_universe, 125 },
194 { "option-126", "X", &dhcp_universe, 126 },
195 { "option-127", "X", &dhcp_universe, 127 },

--- 199 unchanged lines hidden (view full) ---

395 DHO_SMTP_SERVER,
396 DHO_POP_SERVER,
397 DHO_NNTP_SERVER,
398 DHO_WWW_SERVER,
399 DHO_FINGER_SERVER,
400 DHO_IRC_SERVER,
401 DHO_STREETTALK_SERVER,
402 DHO_STREETTALK_DA_SERVER,
403 DHO_DOMAIN_SEARCH,
403
404 /* Presently-undefined options... */
405 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
406 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
407 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
404
405 /* Presently-undefined options... */
406 62, 63, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
407 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
408 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
408 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130,
409 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130,
409 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142,
410 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
411 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
412 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178,
413 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
414 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202,
415 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
416 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226,

--- 30 unchanged lines hidden ---
410 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142,
411 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
412 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
413 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178,
414 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
415 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202,
416 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
417 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226,

--- 30 unchanged lines hidden ---