From: Jouni Malinen Date: Fri, 12 Nov 2010 21:16:38 +0000 (+0200) Subject: wlantest: Verify MFP use in association with MFPR BSS X-Git-Tag: hostap-1-bp~832 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=070d6173e23b5fdf1a6ed5bef2431eb26fbad87c;p=thirdparty%2Fhostap.git wlantest: Verify MFP use in association with MFPR BSS --- diff --git a/wlantest/sta.c b/wlantest/sta.c index 5c0ca0db3..f3517e7a1 100644 --- a/wlantest/sta.c +++ b/wlantest/sta.c @@ -108,6 +108,12 @@ void sta_update_assoc(struct wlantest_sta *sta, struct ieee802_11_elems *elems) MAC2STR(sta->addr), data.group_cipher, MAC2STR(bss->bssid), bss->group_cipher); } + if ((bss->rsn_capab & WPA_CAPABILITY_MFPR) && + !(sta->rsn_capab & WPA_CAPABILITY_MFPC)) { + wpa_printf(MSG_INFO, "STA " MACSTR " tries to associate " + "without MFP to BSS " MACSTR " that advertises " + "MFPR", MAC2STR(sta->addr), MAC2STR(bss->bssid)); + } wpa_printf(MSG_INFO, "STA " MACSTR " proto=%s%s%s"