Deleted Added
sdiff udiff text old ( 183974 ) new ( 228259 )
full compact
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 $");
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 },
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
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,
408 118, 119, 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 ---