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 <markus.theil@tu-ilmenau.de>
This commit is contained in:
Markus Theil 2020-01-06 16:21:07 +01:00 committed by Jouni Malinen
parent 09f96acb9d
commit 8296ee1805
1 changed files with 4 additions and 0 deletions

View File

@ -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);