Name

struct cfg80211_ap_settings — AP configuration

Synopsis

struct cfg80211_ap_settings {
  struct cfg80211_beacon_data beacon;
  int beacon_interval;
  int dtim_period;
  const u8 * ssid;
  size_t ssid_len;
  enum nl80211_hidden_ssid hidden_ssid;
  struct cfg80211_crypto_settings crypto;
  bool privacy;
  enum nl80211_auth_type auth_type;
  int inactivity_timeout;
};  

Members

beacon

beacon data

beacon_interval

beacon interval

dtim_period

DTIM period

ssid

SSID to be used in the BSS (note: may be NULL if not provided from user space)

ssid_len

length of ssid

hidden_ssid

whether to hide the SSID in Beacon/Probe Response frames

crypto

crypto settings

privacy

the BSS uses privacy

auth_type

Authentication type (algorithm)

inactivity_timeout

time in seconds to determine station's inactivity.

Description

Used to configure an AP interface.