diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-02 01:16:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-02 01:16:08 +0000 |
commit | c4d606e3678333fe07348904d1e2222cf43c5e31 (patch) | |
tree | 927d83d07d37b508ca6d507763c0dbbf0641ee5a /networking/udhcp/options.c | |
parent | de55b5d014ac8800f0e7bfffa9a74d93beec28af (diff) | |
download | busybox-w32-c4d606e3678333fe07348904d1e2222cf43c5e31.tar.gz busybox-w32-c4d606e3678333fe07348904d1e2222cf43c5e31.tar.bz2 busybox-w32-c4d606e3678333fe07348904d1e2222cf43c5e31.zip |
udhcpd: allow "domain" to be a list of DNS servers, not just one
Diffstat (limited to 'networking/udhcp/options.c')
-rw-r--r-- | networking/udhcp/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/options.c b/networking/udhcp/options.c index 4a46da579..bda6efc7e 100644 --- a/networking/udhcp/options.c +++ b/networking/udhcp/options.c | |||
@@ -23,7 +23,7 @@ const struct dhcp_option dhcp_options[] = { | |||
23 | {"lprsvr", OPTION_IP | OPTION_LIST, 0x09}, | 23 | {"lprsvr", OPTION_IP | OPTION_LIST, 0x09}, |
24 | {"hostname", OPTION_STRING | OPTION_REQ, 0x0c}, | 24 | {"hostname", OPTION_STRING | OPTION_REQ, 0x0c}, |
25 | {"bootsize", OPTION_U16, 0x0d}, | 25 | {"bootsize", OPTION_U16, 0x0d}, |
26 | {"domain", OPTION_STRING | OPTION_REQ, 0x0f}, | 26 | {"domain", OPTION_STRING | OPTION_LIST | OPTION_REQ, 0x0f}, |
27 | {"swapsvr", OPTION_IP, 0x10}, | 27 | {"swapsvr", OPTION_IP, 0x10}, |
28 | {"rootpath", OPTION_STRING, 0x11}, | 28 | {"rootpath", OPTION_STRING, 0x11}, |
29 | {"ipttl", OPTION_U8, 0x17}, | 29 | {"ipttl", OPTION_U8, 0x17}, |