diff options
author | Arik Nemtsov <arik@wizery.com> | 2011-11-10 11:28:56 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-11-11 12:32:51 -0500 |
commit | 00f740e1a3b7abb51980371ee8fa113df22ae0b8 (patch) | |
tree | ef32c13175ba8bd2aed63d5fb31ad393829ce90d /include/linux/nl80211.h | |
parent | 87bbbe22f84b91d0bcd3a7fc638e4f5e8224cc4e (diff) | |
download | linux-3.10-00f740e1a3b7abb51980371ee8fa113df22ae0b8.tar.gz linux-3.10-00f740e1a3b7abb51980371ee8fa113df22ae0b8.tar.bz2 linux-3.10-00f740e1a3b7abb51980371ee8fa113df22ae0b8.zip |
nl80211: Pass probe response data to drivers
Pass probe-response data from usermode via beacon parameters.
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 'include/linux/nl80211.h')
-rw-r--r-- | include/linux/nl80211.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/nl80211.h b/include/linux/nl80211.h index be92333cf8f..f9261c25373 100644 --- a/include/linux/nl80211.h +++ b/include/linux/nl80211.h @@ -1166,6 +1166,10 @@ enum nl80211_commands { * This attribute holds a bitmap of the supported protocols for * offloading (see &enum nl80211_probe_resp_offload_support_attr). * + * @NL80211_ATTR_PROBE_RESP: Probe Response template data. Contains the entire + * probe-response frame. The DA field in the 802.11 header is zero-ed out, + * to be filled by the FW. + * * @NL80211_ATTR_MAX: highest attribute number currently defined * @__NL80211_ATTR_AFTER_LAST: internal use */ @@ -1402,6 +1406,8 @@ enum nl80211_attrs { NL80211_ATTR_PROBE_RESP_OFFLOAD, + NL80211_ATTR_PROBE_RESP, + /* add attributes here, update the policy in nl80211.c */ __NL80211_ATTR_AFTER_LAST, |