wlantest: Add more debugging details for PMK selection
This commit is contained in:
parent
902621e2b0
commit
0778c8f5ed
1 changed files with 5 additions and 0 deletions
|
@ -131,15 +131,20 @@ static void derive_ptk(struct wlantest *wt, struct wlantest_bss *bss,
|
||||||
{
|
{
|
||||||
struct wlantest_pmk *pmk;
|
struct wlantest_pmk *pmk;
|
||||||
|
|
||||||
|
wpa_printf(MSG_DEBUG, "Trying to derive PTK for " MACSTR,
|
||||||
|
MAC2STR(sta->addr));
|
||||||
dl_list_for_each(pmk, &bss->pmk, struct wlantest_pmk, list) {
|
dl_list_for_each(pmk, &bss->pmk, struct wlantest_pmk, list) {
|
||||||
|
wpa_printf(MSG_DEBUG, "Try per-BSS PMK");
|
||||||
if (try_pmk(bss, sta, ver, data, len, pmk) == 0)
|
if (try_pmk(bss, sta, ver, data, len, pmk) == 0)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl_list_for_each(pmk, &wt->pmk, struct wlantest_pmk, list) {
|
dl_list_for_each(pmk, &wt->pmk, struct wlantest_pmk, list) {
|
||||||
|
wpa_printf(MSG_DEBUG, "Try global PMK");
|
||||||
if (try_pmk(bss, sta, ver, data, len, pmk) == 0)
|
if (try_pmk(bss, sta, ver, data, len, pmk) == 0)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
wpa_printf(MSG_DEBUG, "No matching PMK found to derive PTK");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue