From 2d810231c11f54df2eb035d7db0b7a23c58ff33b Mon Sep 17 00:00:00 2001 From: Brian Demsky Date: Fri, 16 Jun 2017 21:25:49 -0700 Subject: [PATCH] Remove file that I checked into wrong directory --- ...0-hostapd_disable_dgaf_multicast_fix.patch | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 package/network/services/hostapd/files/800-hostapd_disable_dgaf_multicast_fix.patch diff --git a/package/network/services/hostapd/files/800-hostapd_disable_dgaf_multicast_fix.patch b/package/network/services/hostapd/files/800-hostapd_disable_dgaf_multicast_fix.patch deleted file mode 100644 index 9528f6d015..0000000000 --- a/package/network/services/hostapd/files/800-hostapd_disable_dgaf_multicast_fix.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- a/src/ap/dhcp_snoop.c -+++ b/src/ap/dhcp_snoop.c -@@ -110,6 +110,15 @@ static void handle_dhcp(void *ctx, const u8 *src_addr, const u8 *buf, - } - } - -+ if (hapd->conf->disable_dgaf && is_broadcast_ether_addr(buf)) { -+ for (sta = hapd->sta_list; sta; sta = sta->next) { -+ if (!(sta->flags & WLAN_STA_AUTHORIZED)) -+ continue; -+ x_snoop_mcast_to_ucast_convert_send(hapd, sta, -+ (u8 *) buf, len); -+ } -+ } -+ - if (msgtype == DHCPACK) { - if (b->your_ip == 0) - return; -@@ -146,15 +155,6 @@ static void handle_dhcp(void *ctx, const u8 *src_addr, const u8 *buf, - } - sta->ipaddr = b->your_ip; - } -- -- if (hapd->conf->disable_dgaf && is_broadcast_ether_addr(buf)) { -- for (sta = hapd->sta_list; sta; sta = sta->next) { -- if (!(sta->flags & WLAN_STA_AUTHORIZED)) -- continue; -- x_snoop_mcast_to_ucast_convert_send(hapd, sta, -- (u8 *) buf, len); -- } -- } - } - - -- 2.34.1