conf: Increase default eapool handshake timeout

This commit is contained in:
Denis Kenzior 2019-01-09 21:13:53 -06:00
parent ed5753fb7c
commit 12189fcf39
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
mtu=1400 mtu=1400
[EAPoL] [EAPoL]
max_4way_handshake_time=2 max_4way_handshake_time=5
[Scan] [Scan]
# #

View File

@ -2382,7 +2382,7 @@ void __eapol_set_config(struct l_settings *config)
{ {
if (!l_settings_get_uint(config, "EAPoL", if (!l_settings_get_uint(config, "EAPoL",
"max_4way_handshake_time", &eapol_4way_handshake_time)) "max_4way_handshake_time", &eapol_4way_handshake_time))
eapol_4way_handshake_time = 2; eapol_4way_handshake_time = 5;
} }
bool eapol_init() bool eapol_init()