aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/options.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-26 17:41:00 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-26 17:41:00 +0000
commite175ff252f9abb7267000571207c9d612728e1b9 (patch)
treebc6843cbc8ca3d0d2257a9e2349c03358b70b85a /networking/udhcp/options.c
parent22f6dcb47c32909ca0a3d720b11df5ea86b1e76c (diff)
downloadbusybox-w32-e175ff252f9abb7267000571207c9d612728e1b9.tar.gz
busybox-w32-e175ff252f9abb7267000571207c9d612728e1b9.tar.bz2
busybox-w32-e175ff252f9abb7267000571207c9d612728e1b9.zip
several fixes from openWRT project
Diffstat (limited to 'networking/udhcp/options.c')
-rw-r--r--networking/udhcp/options.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/networking/udhcp/options.c b/networking/udhcp/options.c
index 652647229..ded0f7b9b 100644
--- a/networking/udhcp/options.c
+++ b/networking/udhcp/options.c
@@ -42,8 +42,11 @@ struct dhcp_option dhcp_options[] = {
42 {"dhcptype", OPTION_U8, 0x35}, 42 {"dhcptype", OPTION_U8, 0x35},
43 {"serverid", OPTION_IP, 0x36}, 43 {"serverid", OPTION_IP, 0x36},
44 {"message", OPTION_STRING, 0x38}, 44 {"message", OPTION_STRING, 0x38},
45 {"vendorclass", OPTION_STRING, 0x3C},
46 {"clientid", OPTION_STRING, 0x3D},
45 {"tftp", OPTION_STRING, 0x42}, 47 {"tftp", OPTION_STRING, 0x42},
46 {"bootfile", OPTION_STRING, 0x43}, 48 {"bootfile", OPTION_STRING, 0x43},
49 {"userclass", OPTION_STRING, 0x4D},
47 {"", 0x00, 0x00} 50 {"", 0x00, 0x00}
48}; 51};
49 52