Author: nbd Date: 2015-10-06 14:33:38 +0200 (Tue, 06 Oct 2015) New Revision: 47150
Added: branches/chaos_calmer/package/network/services/hostapd/patches/470-wait-for-nullfunc-longer.patch Log: hostapd: wait longer for inactive client probe (empty data frame) One second is not enough for some devices to ackowledge null data frame which is sent at the end of ap_max_inactivity interval. In particular, this causes severe Wi-Fi instability with Apple iPhone which may take up to 3 seconds to respond. Signed-off-by: Dmitry Ivanov <[email protected]> Backport of r47149 Added: branches/chaos_calmer/package/network/services/hostapd/patches/470-wait-for-nullfunc-longer.patch =================================================================== --- branches/chaos_calmer/package/network/services/hostapd/patches/470-wait-for-nullfunc-longer.patch (rev 0) +++ branches/chaos_calmer/package/network/services/hostapd/patches/470-wait-for-nullfunc-longer.patch 2015-10-06 12:33:38 UTC (rev 47150) @@ -0,0 +1,11 @@ +--- a/src/ap/sta_info.h ++++ b/src/ap/sta_info.h +@@ -179,7 +179,7 @@ struct sta_info { + * AP_DISASSOC_DELAY seconds. Similarly, the station will be deauthenticated + * after AP_DEAUTH_DELAY seconds has passed after disassociation. */ + #define AP_MAX_INACTIVITY (5 * 60) +-#define AP_DISASSOC_DELAY (1) ++#define AP_DISASSOC_DELAY (3) + #define AP_DEAUTH_DELAY (1) + /* Number of seconds to keep STA entry with Authenticated flag after it has + * been disassociated. */ _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
