summaryrefslogtreecommitdiffstats
path: root/package/hostapd/patches/330-multicall_bridge_fix.patch
blob: 76a42431e8266d0c8eeea47b026be66d9d7edda4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--- a/src/drivers/driver_nl80211.c
+++ b/src/drivers/driver_nl80211.c
@@ -466,6 +466,10 @@ static void wpa_driver_nl80211_event_rtm
 		return;
 	}
 
+	if (ifi->ifi_family == AF_BRIDGE &&
+	    drv->nlmode != NL80211_IFTYPE_AP)
+		return;
+
 	wpa_printf(MSG_DEBUG, "RTM_NEWLINK: operstate=%d ifi_flags=0x%x "
 		   "(%s%s%s%s)",
 		   drv->operstate, ifi->ifi_flags,
@@ -537,6 +541,10 @@ static void wpa_driver_nl80211_event_rtm
 	attrlen = len;
 	attr = (struct rtattr *) buf;
 
+	if (ifi->ifi_family == AF_BRIDGE &&
+	    drv->nlmode != NL80211_IFTYPE_AP)
+		return;
+
 	rta_len = RTA_ALIGN(sizeof(struct rtattr));
 	while (RTA_OK(attr, attrlen)) {
 		if (attr->rta_type == IFLA_IFNAME) {
@@ -1636,6 +1644,11 @@ static int wpa_driver_nl80211_capa(struc
 	drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
 	drv->capa.max_remain_on_chan = info.max_remain_on_chan;
 
+#ifdef HOSTAPD
+	drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
+	drv->if_indices = drv->default_if_indices;
+#endif
+
 	return 0;
 }
 
@@ -5638,8 +5651,6 @@ static void *i802_init(struct hostapd_da
 		br_ifindex = 0;
 	}
 
-	drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
-	drv->if_indices = drv->default_if_indices;
 	for (i = 0; i < params->num_bridge; i++) {
 		if (params->bridge[i]) {
 			ifindex = if_nametoindex(params->bridge[i]);