diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-10-24 00:19:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-10-24 00:19:34 +0000 |
commit | bdbdb7b8ea3645be5326897e7bbdb403d3518e1e (patch) | |
tree | cea934e9fd4afae0b58b149afb3f4bf8cc749017 /package | |
parent | 30999276f39b37f7adf4bd2a5c372050e2ccab63 (diff) | |
download | upstream-bdbdb7b8ea3645be5326897e7bbdb403d3518e1e.tar.gz upstream-bdbdb7b8ea3645be5326897e7bbdb403d3518e1e.tar.bz2 upstream-bdbdb7b8ea3645be5326897e7bbdb403d3518e1e.zip |
hostapd: fix AP+STA reconnects
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23604 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/hostapd/patches/453-ap_sta_support.patch | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package/hostapd/patches/453-ap_sta_support.patch b/package/hostapd/patches/453-ap_sta_support.patch index c2f4d7c6f0..99c4b0e4f7 100644 --- a/package/hostapd/patches/453-ap_sta_support.patch +++ b/package/hostapd/patches/453-ap_sta_support.patch @@ -90,7 +90,7 @@ /* Configure default/group WEP keys for static WEP */ int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid) { -@@ -548,6 +597,10 @@ void wpa_supplicant_set_state(struct wpa +@@ -548,8 +597,14 @@ void wpa_supplicant_set_state(struct wpa #ifndef IEEE8021X_EAPOL wpa_drv_set_supp_port(wpa_s, 1); #endif @@ -100,8 +100,12 @@ +#endif } else if (state == WPA_DISCONNECTED || state == WPA_ASSOCIATING || state == WPA_ASSOCIATED) { ++ if (wpa_s->hostapd) ++ hostapd_stop(wpa_s); wpa_s->new_connection = 1; -@@ -1957,6 +2010,21 @@ static int wpa_supplicant_init_iface(str + wpa_drv_set_operstate(wpa_s, 0); + #ifndef IEEE8021X_EAPOL +@@ -1957,6 +2012,21 @@ static int wpa_supplicant_init_iface(str os_strlcpy(wpa_s->bridge_ifname, iface->bridge_ifname, sizeof(wpa_s->bridge_ifname)); } |