projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[ep93xx] add missing keyboard symbol
[openwrt.git]
/
package
/
busybox
/
patches
/
244-udhcpc_add_6rd_option.patch
diff --git
a/package/busybox/patches/244-udhcpc_add_6rd_option.patch
b/package/busybox/patches/244-udhcpc_add_6rd_option.patch
index
3037708
..
0bf6ff0
100644
(file)
--- a/
package/busybox/patches/244-udhcpc_add_6rd_option.patch
+++ b/
package/busybox/patches/244-udhcpc_add_6rd_option.patch
@@
-1,22
+1,24
@@
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
-@@ -54,6 +54,
7
@@ const struct dhcp_optflag dhcp_optflags[
+@@ -54,6 +54,
8
@@ const struct dhcp_optflag dhcp_optflags[
{ OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */
#endif
{ OPTION_STATIC_ROUTES , 0x79 }, /* DHCP_STATIC_ROUTES */
{ OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */
#endif
{ OPTION_STATIC_ROUTES , 0x79 }, /* DHCP_STATIC_ROUTES */
-+ { OPTION_6RD , 0xd4 }, /* DHCP_6RD */
++ { OPTION_6RD , 0xd4 }, /* DHCP_6RD (RFC) */
++ { OPTION_6RD , 0x96 }, /* DHCP_6RD (Comcast) */
{ OPTION_STRING , 0xfc }, /* DHCP_WPAD */
/* Options below have no match in dhcp_option_strings[],
{ OPTION_STRING , 0xfc }, /* DHCP_WPAD */
/* Options below have no match in dhcp_option_strings[],
-@@ -114,6 +11
5,7
@@ const char dhcp_option_strings[] ALIGN1
+@@ -114,6 +11
6,8
@@ const char dhcp_option_strings[] ALIGN1
// doesn't work in udhcpd.conf since OPTION_STATIC_ROUTES
// is not handled yet by "string->option" conversion code:
"staticroutes" "\0"/* DHCP_STATIC_ROUTES */
// doesn't work in udhcpd.conf since OPTION_STATIC_ROUTES
// is not handled yet by "string->option" conversion code:
"staticroutes" "\0"/* DHCP_STATIC_ROUTES */
-+ "ip6rd" "\0" /* DHCP_6RD */
++ "ip6rd" "\0" /* DHCP_6RD (RFC) */
++ "ip6rd" "\0" /* DHCP_6RD (Comcast) */
"wpad" "\0" /* DHCP_WPAD */
;
"wpad" "\0" /* DHCP_WPAD */
;
-@@ -141,6 +14
3
,7 @@ const uint8_t dhcp_option_lengths[] ALIG
+@@ -141,6 +14
5
,7 @@ const uint8_t dhcp_option_lengths[] ALIG
[OPTION_S32] = 4,
/* Just like OPTION_STRING, we use minimum length here */
[OPTION_STATIC_ROUTES] = 5,
[OPTION_S32] = 4,
/* Just like OPTION_STRING, we use minimum length here */
[OPTION_STATIC_ROUTES] = 5,
This page took
0.023938 seconds
and
4
git commands to generate.