summaryrefslogtreecommitdiff
path: root/package/network/services/dnsmasq/patches/200-fix-dhcpv6-solicit-handling.patch
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2015-04-23 13:05:15 +0000
committerSteven Barth <cyrus@openwrt.org>2015-04-23 13:05:15 +0000
commit62e7f07615192b909ddb71408e67c4938b08b3cc (patch)
tree7cd4df839bba65d21e269ce2393f5993ba9d964e /package/network/services/dnsmasq/patches/200-fix-dhcpv6-solicit-handling.patch
parent6bfb1a4b11f9c941b29b1faed4d818ccbc9ce539 (diff)
downloadmtk-20170518-62e7f07615192b909ddb71408e67c4938b08b3cc.zip
mtk-20170518-62e7f07615192b909ddb71408e67c4938b08b3cc.tar.gz
mtk-20170518-62e7f07615192b909ddb71408e67c4938b08b3cc.tar.bz2
dnsmasq: bump to 2.73rc6
Signed-off-by: Steven Barth <steven@midlink.org> SVN-Revision: 45572
Diffstat (limited to 'package/network/services/dnsmasq/patches/200-fix-dhcpv6-solicit-handling.patch')
-rw-r--r--package/network/services/dnsmasq/patches/200-fix-dhcpv6-solicit-handling.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/package/network/services/dnsmasq/patches/200-fix-dhcpv6-solicit-handling.patch b/package/network/services/dnsmasq/patches/200-fix-dhcpv6-solicit-handling.patch
deleted file mode 100644
index 7c90028..0000000
--- a/package/network/services/dnsmasq/patches/200-fix-dhcpv6-solicit-handling.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 35042c3ef61b3bc07f0f9418dff6be6ed78f4aa1 Mon Sep 17 00:00:00 2001
-From: Steven Barth <steven@midlink.org>
-Date: Fri, 10 Apr 2015 10:46:57 +0200
-Subject: [PATCH] Revert "Don't reply to DHCPv6 SOLICIT messages when not
- configured for statefull DHCPv6."
-
-This reverts commit 61b838dd574c51d96fef100285a0d225824534f9.
----
- src/rfc3315.c | 13 -------------
- 1 file changed, 13 deletions(-)
-
-diff --git a/src/rfc3315.c b/src/rfc3315.c
-index c1ddc80..50131d8 100644
---- a/src/rfc3315.c
-+++ b/src/rfc3315.c
-@@ -824,19 +824,6 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
- }
- else
- {
-- /* Windows 8 always requests an address even if the Managed bit
-- in RA is 0 and it keeps retrying if it receives a reply
-- stating that no addresses are available. We solve this
-- by not replying at all if we're not configured to give any
-- addresses by DHCPv6. RFC 3315 17.2.1. appears to allow this. */
--
-- for (c = state->context; c; c = c->current)
-- if (!(c->flags & CONTEXT_RA_STATELESS))
-- break;
--
-- if (!c)
-- return 0;
--
- /* no address, return error */
- o1 = new_opt6(OPTION6_STATUS_CODE);
- put_opt6_short(DHCP6NOADDRS);
---
-2.1.4
-