X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Fhostapd%2Fpatches%2F551-nl80211_del_beacon_bss.patch;h=e40c8678d08f08c553c134e47c8acd30c1dffe6d;hb=5f4291b1cf4e634ab429b219a312ebacd890acde;hp=bd71a7bafdc47787db68195848e22a90a429f183;hpb=f90d7885605f132a9961f2281c217b235864ee56;p=openwrt-10.03%2F.git diff --git a/package/hostapd/patches/551-nl80211_del_beacon_bss.patch b/package/hostapd/patches/551-nl80211_del_beacon_bss.patch index bd71a7baf..e40c8678d 100644 --- a/package/hostapd/patches/551-nl80211_del_beacon_bss.patch +++ b/package/hostapd/patches/551-nl80211_del_beacon_bss.patch @@ -1,6 +1,6 @@ --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c -@@ -2065,23 +2065,41 @@ wpa_driver_nl80211_finish_drv_init(struc +@@ -2135,23 +2135,43 @@ wpa_driver_nl80211_finish_drv_init(struc } @@ -33,18 +33,20 @@ + + for (bss = &drv->first_bss; bss; bss = bss->next) + wpa_driver_nl80211_del_bss_beacon(bss); ++ ++ return 0; +} + +static int wpa_driver_nl80211_stop_ap(void *priv) +{ + struct i802_bss *bss = priv; + -+ wpa_driver_nl80211_del_beacon(bss->drv); ++ return wpa_driver_nl80211_del_beacon(bss->drv); +} /** * wpa_driver_nl80211_deinit - Deinitialize nl80211 driver interface -@@ -6529,4 +6547,5 @@ const struct wpa_driver_ops wpa_driver_n +@@ -6658,4 +6678,5 @@ const struct wpa_driver_ops wpa_driver_n .set_intra_bss = nl80211_set_intra_bss, .set_param = nl80211_set_param, .get_radio_name = nl80211_get_radio_name, @@ -52,10 +54,10 @@ }; --- a/src/drivers/driver.h +++ b/src/drivers/driver.h -@@ -2217,6 +2217,8 @@ struct wpa_driver_ops { - const u8 *buf, size_t len); - - int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer); +@@ -2253,6 +2253,8 @@ struct wpa_driver_ops { + * implementation, there is no need to implement this function. + */ + int (*set_authmode)(void *priv, int authmode); + + int (*stop_ap)(void *priv); };