diff options
author | Denys Vlasenko | 2010-03-19 23:42:23 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-03-19 23:42:23 +0100 |
commit | 777706cb2352c02602842f89d916a0e18ce6bd91 (patch) | |
tree | 75596b337731c87718c9015eb9eb6730183824dd /networking/udhcp/options.h | |
parent | 77a2c51e79eb54c8f5cc8903465223cbac6e8d50 (diff) | |
download | busybox-777706cb2352c02602842f89d916a0e18ce6bd91.zip busybox-777706cb2352c02602842f89d916a0e18ce6bd91.tar.gz |
udhcp: remove support for some really old and odd options
function old new delta
dhcp_options 72 68 -4
dhcp_option_strings 271 253 -18
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/options.h')
-rw-r--r-- | networking/udhcp/options.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/options.h b/networking/udhcp/options.h index aeed369..8f6ab0f 100644 --- a/networking/udhcp/options.h +++ b/networking/udhcp/options.h @@ -41,10 +41,10 @@ enum { #define DHCP_TIME_OFFSET 0x02 #define DHCP_ROUTER 0x03 #define DHCP_TIME_SERVER 0x04 -#define DHCP_NAME_SERVER 0x05 +//#define DHCP_NAME_SERVER 0x05 /* _really_ ancient */ #define DHCP_DNS_SERVER 0x06 #define DHCP_LOG_SERVER 0x07 -#define DHCP_COOKIE_SERVER 0x08 +//#define DHCP_COOKIE_SERVER 0x08 /* "quote of the day" */ #define DHCP_LPR_SERVER 0x09 #define DHCP_HOST_NAME 0x0c #define DHCP_BOOT_SIZE 0x0d @@ -64,8 +64,8 @@ enum { #define DHCP_PARAM_REQ 0x37 #define DHCP_MESSAGE 0x38 #define DHCP_MAX_SIZE 0x39 -#define DHCP_T1 0x3a -#define DHCP_T2 0x3b +//#define DHCP_T1 0x3a +//#define DHCP_T2 0x3b #define DHCP_VENDOR 0x3c #define DHCP_CLIENT_ID 0x3d #define DHCP_FQDN 0x51 |