diff options
author | Arik Nemtsov <arik@wizery.com> | 2011-11-10 11:28:57 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-11-11 12:32:51 -0500 |
commit | 029458212604570eec4789049a8a74428484dbb4 (patch) | |
tree | cabbe65d50e83498300a25b02a67f8475c02c3b7 /net/mac80211/ieee80211_i.h | |
parent | 00f740e1a3b7abb51980371ee8fa113df22ae0b8 (diff) | |
download | linux-029458212604570eec4789049a8a74428484dbb4.tar.gz linux-029458212604570eec4789049a8a74428484dbb4.tar.bz2 linux-029458212604570eec4789049a8a74428484dbb4.zip |
mac80211: Save probe response data for bss
Allow setting a probe response template for an interface operating in
AP mode. Low level drivers are notified about changes in the probe
response template and are able to retrieve a copy of the current probe
response. This data can, for example, be uploaded to hardware as a
template.
Signed-off-by: Guy Eilam <guy@wizery.com>
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 873d681a8e52..068cc92d16aa 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -232,6 +232,7 @@ struct beacon_data { struct ieee80211_if_ap { struct beacon_data __rcu *beacon; + struct sk_buff __rcu *probe_resp; struct list_head vlans; |