From 8296ee18053ce45c0915b791be9d413f9f573402 Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Mon, 6 Jan 2020 16:21:07 +0100 Subject: [PATCH] RSN IBSS: Fix EAPOL TX using control port This was previously done only in supplicant role, but a similar change is needed for the authenticator role. Signed-off-by: Markus Theil --- wpa_supplicant/ibss_rsn.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wpa_supplicant/ibss_rsn.c b/wpa_supplicant/ibss_rsn.c index f1e3ecdb2..a3b5164c0 100644 --- a/wpa_supplicant/ibss_rsn.c +++ b/wpa_supplicant/ibss_rsn.c @@ -293,6 +293,10 @@ static int auth_send_eapol(void *ctx, const u8 *addr, const u8 *data, "encrypt=%d)", __func__, MAC2STR(addr), (unsigned long) data_len, encrypt); + if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_CONTROL_PORT) + return wpa_drv_tx_control_port(wpa_s, addr, ETH_P_EAPOL, + data, data_len, !encrypt); + if (wpa_s->l2) return l2_packet_send(wpa_s->l2, addr, ETH_P_EAPOL, data, data_len);