wlantest: Verify that comeback assoc resp includes correct type
The Timeout Interval element needs to use Association Comeback time for the case when (Re)Association Response frame uses Status Code 30. Verify this before incrementing the (re)assocresp_comeback counters.
This commit is contained in:
parent
20f5a4c24c
commit
6908d459e2
1 changed files with 14 additions and 8 deletions
|
@ -336,10 +336,13 @@ static void rx_mgmt_assoc_resp(struct wlantest *wt, const u8 *data, size_t len)
|
|||
wpa_printf(MSG_INFO, "Failed to parse IEs in "
|
||||
"AssocResp from " MACSTR,
|
||||
MAC2STR(mgmt->sa));
|
||||
} else if (elems.timeout_int == 0 ||
|
||||
elems.timeout_int_len != 5) {
|
||||
wpa_printf(MSG_INFO, "No valid Timeout Interval IE in "
|
||||
"AssocResp (status=30) from " MACSTR,
|
||||
} else if (elems.timeout_int == NULL ||
|
||||
elems.timeout_int_len != 5 ||
|
||||
elems.timeout_int[0] !=
|
||||
WLAN_TIMEOUT_ASSOC_COMEBACK) {
|
||||
wpa_printf(MSG_INFO, "No valid Timeout Interval IE "
|
||||
"with Assoc Comeback time in AssocResp "
|
||||
"(status=30) from " MACSTR,
|
||||
MAC2STR(mgmt->sa));
|
||||
} else {
|
||||
sta->counters[
|
||||
|
@ -465,10 +468,13 @@ static void rx_mgmt_reassoc_resp(struct wlantest *wt, const u8 *data,
|
|||
wpa_printf(MSG_INFO, "Failed to parse IEs in "
|
||||
"ReassocResp from " MACSTR,
|
||||
MAC2STR(mgmt->sa));
|
||||
} else if (elems.timeout_int == 0 ||
|
||||
elems.timeout_int_len != 5) {
|
||||
wpa_printf(MSG_INFO, "No valid Timeout Interval IE in "
|
||||
"ReassocResp (status=30) from " MACSTR,
|
||||
} else if (elems.timeout_int == NULL ||
|
||||
elems.timeout_int_len != 5 ||
|
||||
elems.timeout_int[0] !=
|
||||
WLAN_TIMEOUT_ASSOC_COMEBACK) {
|
||||
wpa_printf(MSG_INFO, "No valid Timeout Interval IE "
|
||||
"with Assoc Comeback time in ReassocResp "
|
||||
"(status=30) from " MACSTR,
|
||||
MAC2STR(mgmt->sa));
|
||||
} else {
|
||||
sta->counters[
|
||||
|
|
Loading…
Reference in a new issue