fix(wifi): allow some special igtk keyindx to workaround faulty APs

This commit is contained in:
muhaidong
2023-11-16 20:20:08 +08:00
committed by alanmaxwell
parent 8b473bee24
commit 24e208eca1

View File

@ -1004,12 +1004,12 @@ static int wpa_supplicant_install_igtk(struct wpa_sm *sm,
"WPA: IGTK keyid %d pn %02x%02x%02x%02x%02x%02x",
keyidx, MAC2STR(igtk->pn));
wpa_hexdump_key(MSG_DEBUG, "WPA: IGTK", igtk->igtk, len);
if (esp_wifi_set_igtk_internal(WIFI_IF_STA, igtk) < 0) {
if (keyidx > 4095) {
wpa_printf(MSG_WARNING,
"WPA: Invalid IGTK KeyID %d", keyidx);
return -1;
}
if (esp_wifi_set_igtk_internal(WIFI_IF_STA, igtk) < 0) {
wpa_printf(MSG_WARNING,
"WPA: Failed to configure IGTK to the driver");
return -1;