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