diff options
| author | Jouni Malinen <j@w1.fi> | 2015-07-25 23:20:33 +0300 |
|---|---|---|
| committer | Linux Build Service Account <lnxbuild@localhost> | 2015-10-06 03:19:56 -0600 |
| commit | d365359298152774c8bcc96fd57a9c33ef7b6843 (patch) | |
| tree | de4c34602763bfa6817923e2194888cc730ac05d /src/fst | |
| parent | 2d13cad04acae94b2d3991e432c62b36abe9509d (diff) | |
| download | android_external_wpa_supplicant_8-d365359298152774c8bcc96fd57a9c33ef7b6843.tar.gz android_external_wpa_supplicant_8-d365359298152774c8bcc96fd57a9c33ef7b6843.tar.bz2 android_external_wpa_supplicant_8-d365359298152774c8bcc96fd57a9c33ef7b6843.zip | |
FST: Print reason for ignoring FST Action frame in debug log
This makes it easier to understand why some frames are not processed.
Change-Id: I143eebc04e4ac8c4b107026c92ab3be051ee49a8
Signed-off-by: Jouni Malinen <j@w1.fi>
Git-commit: 94edea89fd1c1deb176eaea9f29cbc4e3ee3ddda
Git-repo: git://w1.fi/srv/git/hostap.git
CRs-Fixed: 891455
Diffstat (limited to 'src/fst')
| -rw-r--r-- | src/fst/fst.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fst/fst.c b/src/fst/fst.c index 568fb863..347c6fa5 100644 --- a/src/fst/fst.c +++ b/src/fst/fst.c @@ -183,6 +183,10 @@ void fst_rx_action(struct fst_iface *iface, const struct ieee80211_mgmt *mgmt, { if (fst_iface_is_connected(iface, mgmt->sa)) fst_session_on_action_rx(iface, mgmt, len); + else + wpa_printf(MSG_DEBUG, + "FST: Ignore FST Action frame - no FST connection with " + MACSTR, MAC2STR(mgmt->sa)); } |
