From a90cc1c99793bc66c0db2ef4ea158c84b0531738 Mon Sep 17 00:00:00 2001 From: leiwei Date: Fri, 24 May 2019 16:53:32 +0800 Subject: [PATCH] macsec: Note that MKA takes care of EAPOL-MKA processing Signed-off-by: leiwei --- src/ap/ieee802_1x.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ap/ieee802_1x.c b/src/ap/ieee802_1x.c index 09ec16b8b..7854f6fc3 100644 --- a/src/ap/ieee802_1x.c +++ b/src/ap/ieee802_1x.c @@ -1119,6 +1119,13 @@ void ieee802_1x_receive(struct hostapd_data *hapd, const u8 *sa, const u8 *buf, /* TODO: implement support for this; show data */ break; +#ifdef CONFIG_MACSEC + case IEEE802_1X_TYPE_EAPOL_MKA: + wpa_printf(MSG_EXCESSIVE, + "EAPOL type %d will be handled by MKA", hdr->type); + break; +#endif /* CONFIG_MACSEC */ + default: wpa_printf(MSG_DEBUG, " unknown IEEE 802.1X packet type"); sta->eapol_sm->dot1xAuthInvalidEapolFramesRx++;