STRUCT CFG80211_IBSS
Section: Actions and configuration (9)
Updated: February 2011
Index
Return to Main Contents
NAME
struct_cfg80211_ibss_params - IBSS parameters
SYNOPSIS
struct cfg80211_ibss_params {
u8 * ssid;
u8 * bssid;
struct ieee80211_channel * channel;
u8 * ie;
u8 ssid_len;
u8 ie_len;
u16 beacon_interval;
u32 basic_rates;
bool channel_fixed;
bool privacy;
};
MEMBERS
ssid
-
The SSID, will always be non-null.
bssid
-
Fixed BSSID requested, maybe be
NULL, if set do not search for IBSSs with a different BSSID.
channel
-
The channel to use if no IBSS can be found to join.
ie
-
information element(s) to include in the beacon
ssid_len
-
The length of the SSID, will always be non-zero.
ie_len
-
length of that
beacon_interval
-
beacon interval to use
basic_rates
-
bitmap of basic rates to use when creating the IBSS
channel_fixed
-
The channel should be fixed -- do not search for IBSSs to join on other channels.
privacy
-
this is a protected network, keys will be configured after joining
DESCRIPTION
This structure defines the IBSS parameters for the
join_ibss
method.
AUTHOR
Johannes Berg <johannes@sipsolutions.net>
-
Author.
COPYRIGHT