Parcourir la source

GAS: Reduce query timeout to two seconds

The five second timeout for GAS queries is excessive and can result in
long waits in cases where APs are either misconfigured or frames are
lost.

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen il y a 12 ans
Parent
commit
f65f539d9a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      wpa_supplicant/gas_query.c

+ 1 - 1
wpa_supplicant/gas_query.c

@@ -20,7 +20,7 @@
 
 
 
 
 /** GAS query timeout in seconds */
 /** GAS query timeout in seconds */
-#define GAS_QUERY_TIMEOUT_PERIOD 5
+#define GAS_QUERY_TIMEOUT_PERIOD 2
 
 
 
 
 /**
 /**