From: Jouni Malinen Date: Sat, 5 Sep 2015 08:54:06 +0000 (+0300) Subject: wpa_priv: allow l2_packet to be opened for ethertype 0x890d X-Git-Tag: hostap_2_5~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85f4381e145c974e752781a01f54a845687982fe;p=thirdparty%2Fhostap.git wpa_priv: allow l2_packet to be opened for ethertype 0x890d This is needed to initialize TDLS functionality. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/wpa_priv.c b/wpa_supplicant/wpa_priv.c index 0d4aeeb42..152e9557a 100644 --- a/wpa_supplicant/wpa_priv.c +++ b/wpa_supplicant/wpa_priv.c @@ -356,7 +356,8 @@ static void wpa_priv_cmd_l2_register(struct wpa_priv_interface *iface, } proto = reg_cmd[0]; - if (proto != ETH_P_EAPOL && proto != ETH_P_RSN_PREAUTH) { + if (proto != ETH_P_EAPOL && proto != ETH_P_RSN_PREAUTH && + proto != ETH_P_80211_ENCAP) { wpa_printf(MSG_DEBUG, "Refused l2_packet connection for " "ethertype 0x%x", proto); return;