Deleted Added
sdiff udiff text old ( 147073 ) new ( 147689 )
full compact
1/* $OpenBSD: dhcp.h,v 1.5 2004/05/04 15:49:49 deraadt Exp $ */
2
3/* Protocol structures... */
4
5/*
6 * Copyright (c) 1995, 1996 The Internet Software Consortium.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

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

149#define DHO_DHCP_SERVER_IDENTIFIER 54
150#define DHO_DHCP_PARAMETER_REQUEST_LIST 55
151#define DHO_DHCP_MESSAGE 56
152#define DHO_DHCP_MAX_MESSAGE_SIZE 57
153#define DHO_DHCP_RENEWAL_TIME 58
154#define DHO_DHCP_REBINDING_TIME 59
155#define DHO_DHCP_CLASS_IDENTIFIER 60
156#define DHO_DHCP_CLIENT_IDENTIFIER 61
157#define DHO_DHCP_USER_CLASS_ID 77
158#define DHO_END 255
159
160/* DHCP message types. */
161#define DHCPDISCOVER 1
162#define DHCPOFFER 2
163#define DHCPREQUEST 3
164#define DHCPDECLINE 4
165#define DHCPACK 5
166#define DHCPNAK 6
167#define DHCPRELEASE 7
168#define DHCPINFORM 8