dpp: scale PKEX timeout by the number of frequencies used

If the number of frequencies used is very small reduce the timeout
to avoid waiting for extended periods of time.
This commit is contained in:
James Prestwood 2024-08-27 07:21:25 -07:00 committed by Denis Kenzior
parent 294426b450
commit b5aff74e3b
1 changed files with 3 additions and 1 deletions

View File

@ -59,6 +59,7 @@
#define DPP_FRAME_RETRY_TIMEOUT 1
#define DPP_AUTH_PROTO_TIMEOUT 10
#define DPP_PKEX_PROTO_TIMEOUT 120
#define DPP_PKEX_PROTO_PER_FREQ_TIMEOUT 10
static uint32_t netdev_watch;
static struct l_genl_family *nl80211;
@ -4284,7 +4285,8 @@ static void __dpp_pkex_start_enrollee(struct dpp_sm *dpp)
{
dpp->current_freq = dpp->freqs[0];
dpp_reset_protocol_timer(dpp, DPP_PKEX_PROTO_TIMEOUT);
dpp_reset_protocol_timer(dpp,
dpp->freqs_len * DPP_PKEX_PROTO_PER_FREQ_TIMEOUT);
l_debug("PKEX start enrollee (id=%s)", dpp->pkex_id ?: "unset");