diff options
author | Jouni Malinen <j@w1.fi> | 2008-12-26 12:30:34 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2008-12-26 12:30:34 +0200 |
commit | 45c94154a61d932174232e19f096e346a129b028 (patch) | |
tree | 78c40b76060ad7efa64dcb4f204bcc44fa394721 /hostapd/config.h | |
parent | 93b76319f1506c386966721a3fb30482883b4b3d (diff) | |
download | external_wpa_supplicant_8_ti-45c94154a61d932174232e19f096e346a129b028.zip external_wpa_supplicant_8_ti-45c94154a61d932174232e19f096e346a129b028.tar.gz external_wpa_supplicant_8_ti-45c94154a61d932174232e19f096e346a129b028.tar.bz2 |
Updated SA Query procedure to use timeouts per 802.11w/D7.0
The previous max_attempts * timeout is now replaced with two timeouts
(one for each retry, the other one for maximum wait).
Diffstat (limited to 'hostapd/config.h')
-rw-r--r-- | hostapd/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hostapd/config.h b/hostapd/config.h index 68b9856..c9c715c 100644 --- a/hostapd/config.h +++ b/hostapd/config.h @@ -210,10 +210,10 @@ struct hostapd_bss_config { IEEE80211W_OPTIONAL = 1, IEEE80211W_REQUIRED = 2 } ieee80211w; - /* dot11AssociationPingResponseTimeout (in TU) */ - unsigned int assoc_ping_timeout; - /* dot11AssociationMaximumPingAttempts */ - int assoc_ping_attempts; + /* dot11AssociationSAQueryMaximumTimeout (in TUs) */ + unsigned int assoc_sa_query_max_timeout; + /* dot11AssociationSAQueryRetryTimeout (in TUs) */ + int assoc_sa_query_retry_timeout; #endif /* CONFIG_IEEE80211W */ int wpa_pairwise; int wpa_group; |