Name

struct ieee80211_if_conf — configuration of an interface

Synopsis

struct ieee80211_if_conf {
  u32 changed;
  u8 * bssid;
  u8 * ssid;
  size_t ssid_len;
};  

Members

changed

parameters that have changed, see enum ieee80211_if_conf_change.

bssid

BSSID of the network we are associated to/creating.

ssid

used (together with ssid_len) by drivers for hardware that generate beacons independently. The pointer is valid only during the config_interface call, so copy the value somewhere if you need it.

ssid_len

length of the ssid field.

Description

This structure is passed to the config_interface callback of struct ieee80211_hw.