From: leiwei Date: Fri, 24 May 2019 08:53:32 +0000 (+0800) Subject: macsec: Note that MKA takes care of EAPOL-MKA processing X-Git-Tag: hostap_2_9~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a90cc1c99793bc66c0db2ef4ea158c84b0531738;p=thirdparty%2Fhostap.git macsec: Note that MKA takes care of EAPOL-MKA processing Signed-off-by: leiwei --- 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++;