diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2017-12-01 22:38:12 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-12-02 10:00:44 (GMT) |
commit | ed2c493e9e9e692bbecd9e13de2111279a3a06fe (patch) | |
tree | 5acd32a6be2de3d4c6dfd497ddc347794ee78180 /wpa_supplicant | |
parent | 702384f77e53d9eba7aae44204a1ac81428fed1c (diff) | |
download | hostap-ed2c493e9e9e692bbecd9e13de2111279a3a06fe.zip hostap-ed2c493e9e9e692bbecd9e13de2111279a3a06fe.tar.gz hostap-ed2c493e9e9e692bbecd9e13de2111279a3a06fe.tar.bz2 |
DPP: Change Authentication Response retry time to 1 second
The previously used 10 second timer did not really make much sense since
the Initiator is not going to be waiting for the response that long.
Change this to 1 second based on the DPP tech spec change.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'wpa_supplicant')
-rw-r--r-- | wpa_supplicant/dpp_supplicant.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa_supplicant/dpp_supplicant.c b/wpa_supplicant/dpp_supplicant.c index 42c1028..6e947ed 100644 --- a/wpa_supplicant/dpp_supplicant.c +++ b/wpa_supplicant/dpp_supplicant.c @@ -352,7 +352,7 @@ static void wpas_dpp_auth_resp_retry(struct wpa_supplicant *wpa_s) if (wpa_s->dpp_resp_retry_time) wait_time = wpa_s->dpp_resp_retry_time; else - wait_time = 10000; + wait_time = 1000; wpa_printf(MSG_DEBUG, "DPP: Schedule retransmission of Authentication Response frame in %u ms", wait_time); |