From patchwork Fri Sep 14 13:12:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [4/5] hostap: add check for the wds sta flag before creating 4addr VLANs Date: Fri, 14 Sep 2012 03:12:28 -0000 From: Felix Fietkau X-Patchwork-Id: 183920 Message-Id: <1347628349-34362-4-git-send-email-nbd@openwrt.org> To: hostap@lists.shmoo.com Signed-hostap: Felix Fietkau --- src/ap/ieee802_11.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c index 4b6e9d7..ce20e5f 100644 --- a/src/ap/ieee802_11.c +++ b/src/ap/ieee802_11.c @@ -1831,6 +1831,9 @@ void ieee802_11_rx_from_unknown(struct hostapd_data *hapd, const u8 *src, sta = ap_get_sta(hapd, src); if (sta && (sta->flags & WLAN_STA_ASSOC)) { + if (!hapd->conf->wds_sta) + return; + if (wds && !(sta->flags & WLAN_STA_WDS)) { wpa_printf(MSG_DEBUG, "Enable 4-address WDS mode for " "STA " MACSTR " (aid %u)",