cfg80211.h (17b942478643c5a90c06d978479bd326040bfa19) cfg80211.h (ba6fbacf9c073effaedf0c52fe7e52e2baf67725)
1#ifndef __NET_CFG80211_H
2#define __NET_CFG80211_H
3/*
4 * 802.11 device and configuration interface
5 *
6 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
7 * Copyright 2013-2014 Intel Mobile Communications GmbH
8 * Copyright 2015 Intel Deutschland GmbH

--- 1911 unchanged lines hidden (view full) ---

1920 * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
1921 * will be used in ht_capa. Un-supported values will be ignored.
1922 * @ht_capa_mask: The bits of ht_capa which are to be used.
1923 * @vht_capa: VHT Capability overrides
1924 * @vht_capa_mask: The bits of vht_capa which are to be used.
1925 * @pbss: if set, connect to a PCP instead of AP. Valid for DMG
1926 * networks.
1927 * @bss_select: criteria to be used for BSS selection.
1#ifndef __NET_CFG80211_H
2#define __NET_CFG80211_H
3/*
4 * 802.11 device and configuration interface
5 *
6 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
7 * Copyright 2013-2014 Intel Mobile Communications GmbH
8 * Copyright 2015 Intel Deutschland GmbH

--- 1911 unchanged lines hidden (view full) ---

1920 * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
1921 * will be used in ht_capa. Un-supported values will be ignored.
1922 * @ht_capa_mask: The bits of ht_capa which are to be used.
1923 * @vht_capa: VHT Capability overrides
1924 * @vht_capa_mask: The bits of vht_capa which are to be used.
1925 * @pbss: if set, connect to a PCP instead of AP. Valid for DMG
1926 * networks.
1927 * @bss_select: criteria to be used for BSS selection.
1928 * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
1928 */
1929struct cfg80211_connect_params {
1930 struct ieee80211_channel *channel;
1931 struct ieee80211_channel *channel_hint;
1932 const u8 *bssid;
1933 const u8 *bssid_hint;
1934 const u8 *ssid;
1935 size_t ssid_len;

--- 8 unchanged lines hidden (view full) ---

1944 u32 flags;
1945 int bg_scan_period;
1946 struct ieee80211_ht_cap ht_capa;
1947 struct ieee80211_ht_cap ht_capa_mask;
1948 struct ieee80211_vht_cap vht_capa;
1949 struct ieee80211_vht_cap vht_capa_mask;
1950 bool pbss;
1951 struct cfg80211_bss_selection bss_select;
1929 */
1930struct cfg80211_connect_params {
1931 struct ieee80211_channel *channel;
1932 struct ieee80211_channel *channel_hint;
1933 const u8 *bssid;
1934 const u8 *bssid_hint;
1935 const u8 *ssid;
1936 size_t ssid_len;

--- 8 unchanged lines hidden (view full) ---

1945 u32 flags;
1946 int bg_scan_period;
1947 struct ieee80211_ht_cap ht_capa;
1948 struct ieee80211_ht_cap ht_capa_mask;
1949 struct ieee80211_vht_cap vht_capa;
1950 struct ieee80211_vht_cap vht_capa_mask;
1951 bool pbss;
1952 struct cfg80211_bss_selection bss_select;
1953 const u8 *prev_bssid;
1952};
1953
1954/**
1955 * enum wiphy_params_flags - set_wiphy_params bitfield values
1956 * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
1957 * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
1958 * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
1959 * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed

--- 3471 unchanged lines hidden ---
1954};
1955
1956/**
1957 * enum wiphy_params_flags - set_wiphy_params bitfield values
1958 * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
1959 * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
1960 * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
1961 * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed

--- 3471 unchanged lines hidden ---