summaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2016-09-02 13:52:27 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2016-09-02 13:52:27 -0700
commitd9fed05410462d58dd0f69609d6469782e03c753 (patch)
treefd6227c01a168d7ab9afbc0a42f3b6e03f0ad66d /include/net
parent01b7812ef9f2a465461be5e1938a3601ff2722c4 (diff)
parent5a9bcc929f3a064dbb3e1146e55f0166c7b369ee (diff)
Merge "cfg80211: Add option to specify previous BSSID for Connect command"
Diffstat (limited to 'include/net')
-rw-r--r--include/net/cfg80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 3ee07db23049..73b0fbe034fb 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1898,6 +1898,7 @@ struct cfg80211_ibss_params {
* @vht_capa_mask: The bits of vht_capa which are to be used.
* @pbss: if set, connect to a PCP instead of AP. Valid for DMG
* networks.
+ * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
*/
struct cfg80211_connect_params {
struct ieee80211_channel *channel;
@@ -1921,6 +1922,7 @@ struct cfg80211_connect_params {
struct ieee80211_vht_cap vht_capa;
struct ieee80211_vht_cap vht_capa_mask;
bool pbss;
+ const u8 *prev_bssid;
};
/**