Deleted Added
full compact
tables.c (166602) tables.c (183974)
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 166602 2007-02-09 17:50:26Z emaste $");
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 *

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

382 DHO_VENDOR_ENCAPSULATED_OPTIONS,
383 DHO_NETBIOS_NAME_SERVERS,
384 DHO_NETBIOS_DD_SERVER,
385 DHO_NETBIOS_NODE_TYPE,
386 DHO_NETBIOS_SCOPE,
387 DHO_FONT_SERVERS,
388 DHO_X_DISPLAY_MANAGER,
389 DHO_DHCP_PARAMETER_REQUEST_LIST,
45
46#include "dhcpd.h"
47
48/*
49 * DHCP Option names, formats and codes, from RFC1533.
50 *
51 * Format codes:
52 *

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

382 DHO_VENDOR_ENCAPSULATED_OPTIONS,
383 DHO_NETBIOS_NAME_SERVERS,
384 DHO_NETBIOS_DD_SERVER,
385 DHO_NETBIOS_NODE_TYPE,
386 DHO_NETBIOS_SCOPE,
387 DHO_FONT_SERVERS,
388 DHO_X_DISPLAY_MANAGER,
389 DHO_DHCP_PARAMETER_REQUEST_LIST,
390 DHO_NISPLUS_DOMAIN,
391 DHO_NISPLUS_SERVERS,
392 DHO_TFTP_SERVER_NAME,
393 DHO_BOOTFILE_NAME,
394 DHO_MOBILE_IP_HOME_AGENT,
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,
390
391 /* Presently-undefined options... */
403
404 /* Presently-undefined options... */
392 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
393 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
394 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
395 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118,
396 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130,
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,
397 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142,
398 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
399 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
400 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178,
401 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
402 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202,
403 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
404 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226,

--- 30 unchanged lines hidden ---
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 ---