aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/main.c
diff options
context:
space:
mode:
authorJavier Cardona <javier@cozybit.com>2011-04-07 15:08:31 -0700
committerJohn W. Linville <linville@tuxdriver.com>2011-04-12 16:57:38 -0400
commit71839121a0f35f9968d2e204a76eb22683156fd8 (patch)
treeb7ce1ba4ced00c2dedcb498f30151f44d673af4f /net/mac80211/main.c
parentnl80211/mac80211: let userspace authenticate stations (diff)
downloadlinux-dev-71839121a0f35f9968d2e204a76eb22683156fd8.tar.xz
linux-dev-71839121a0f35f9968d2e204a76eb22683156fd8.zip
mac80211: Let user space receive and send mesh auth/deauth frames
Signed-off-by: Javier Cardona <javier@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r--net/mac80211/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c
index dc50fc3153e5..e2db3dc23953 100644
--- a/net/mac80211/main.c
+++ b/net/mac80211/main.c
@@ -545,7 +545,9 @@ ieee80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = {
},
[NL80211_IFTYPE_MESH_POINT] = {
.tx = 0xffff,
- .rx = BIT(IEEE80211_STYPE_ACTION >> 4),
+ .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
+ BIT(IEEE80211_STYPE_AUTH >> 4) |
+ BIT(IEEE80211_STYPE_DEAUTH >> 4),
},
};