summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-12-22 07:16:46 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-12-22 07:16:46 +0000
commitca93116b8d8097330d718e820c26ade1343622dd (patch)
tree0d74aa019b3662f42354653b791e65d8b5fe2c37 /package/busybox/patches
parent8d05266bea8b8de216be56b16351dea93cb24bfb (diff)
[package] busybox: implement ms static routes option in udhcpc (#6435)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24779 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches')
-rw-r--r--package/busybox/patches/245-udhcpc_add_msroutes_option.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/package/busybox/patches/245-udhcpc_add_msroutes_option.patch b/package/busybox/patches/245-udhcpc_add_msroutes_option.patch
new file mode 100644
index 000000000..e8514479a
--- /dev/null
+++ b/package/busybox/patches/245-udhcpc_add_msroutes_option.patch
@@ -0,0 +1,22 @@
+--- a/networking/udhcp/common.c
++++ b/networking/udhcp/common.c
+@@ -53,7 +53,8 @@ const struct dhcp_optflag dhcp_optflags[
+ { OPTION_DNS_STRING | OPTION_LIST , 0x77 }, /* DHCP_DOMAIN_SEARCH */
+ { OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */
+ #endif
+- { OPTION_STATIC_ROUTES , 0x79 }, /* DHCP_STATIC_ROUTES */
++ { OPTION_STATIC_ROUTES , 0x79 }, /* DHCP_STATIC_ROUTES (RFC) */
++ { OPTION_STATIC_ROUTES , 0xf9 }, /* DHCP_STATIC_ROUTES (Microsoft) */
+ { OPTION_6RD , 0xd4 }, /* DHCP_6RD (RFC) */
+ { OPTION_6RD , 0x96 }, /* DHCP_6RD (Comcast) */
+ { OPTION_STRING , 0xfc }, /* DHCP_WPAD */
+@@ -115,7 +116,8 @@ const char dhcp_option_strings[] ALIGN1
+ #endif
+ // doesn't work in udhcpd.conf since OPTION_STATIC_ROUTES
+ // is not handled yet by "string->option" conversion code:
+- "staticroutes" "\0"/* DHCP_STATIC_ROUTES */
++ "staticroutes" "\0" /* DHCP_STATIC_ROUTES (RFC) */
++ "msstaticroutes" "\0"/* DHCP_STATIC_ROUTES (Microsoft) */
+ "ip6rd" "\0" /* DHCP_6RD (RFC) */
+ "ip6rd" "\0" /* DHCP_6RD (Comcast) */
+ "wpad" "\0" /* DHCP_WPAD */