aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-06-13 14:42:47 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-06-13 14:42:47 +0000
commitd196e4087eb6ded3fb230648e997888171992796 (patch)
tree255967f60a8ca9ed61a431896cea3ef89ef11c5d /package/busybox
parentc90052be54e523117c99ae8a4a59b63f37fda293 (diff)
downloadupstream-d196e4087eb6ded3fb230648e997888171992796.tar.gz
upstream-d196e4087eb6ded3fb230648e997888171992796.tar.bz2
upstream-d196e4087eb6ded3fb230648e997888171992796.zip
udhcpc: add cidr routes support (patch from #5299)
SVN-Revision: 16433
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/244-udhcpc_cidrroute.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/package/busybox/patches/244-udhcpc_cidrroute.patch b/package/busybox/patches/244-udhcpc_cidrroute.patch
new file mode 100644
index 0000000000..7267750358
--- /dev/null
+++ b/package/busybox/patches/244-udhcpc_cidrroute.patch
@@ -0,0 +1,18 @@
+--- a/networking/udhcp/options.c
++++ b/networking/udhcp/options.c
+@@ -46,6 +46,7 @@ const struct dhcp_option dhcp_options[]
+ #if ENABLE_FEATURE_UDHCP_RFC3397
+ { OPTION_STR1035 | OPTION_LIST , 0x77 }, /* search */
+ #endif
++ { OPTION_U8 | OPTION_LIST | OPTION_REQ, 0x79 }, /* cidr_static_routes */
+ /* MSIE's "Web Proxy Autodiscovery Protocol" support */
+ { OPTION_STRING , 0xfc }, /* wpad */
+
+@@ -95,6 +96,7 @@ const char dhcp_option_strings[] ALIGN1
+ #if ENABLE_FEATURE_UDHCP_RFC3397
+ "search" "\0"
+ #endif
++ "cidrroute" "\0" /* cidr_static_routes */
+ /* MSIE's "Web Proxy Autodiscovery Protocol" support */
+ "wpad" "\0"
+ ;