1. NAME

struct_bss_parameters - BSS parameters

2. SYNOPSIS



 
Sélectionnez
struct bss_parameters {
  int use_cts_prot;
  int use_short_preamble;
  int use_short_slot_time;
  u8 * basic_rates;
  u8 basic_rates_len;
  int ap_isolate;
  int ht_opmode;
  s8 p2p_ctwindow;
  s8 p2p_opp_ps;
};

3. MEMBERS

use_cts_prot
    Whether to use CTS protection (0 = no, 1 = yes, -1 = do not change)

use_short_preamble
    Whether the use of short preambles is allowed (0 = no, 1 = yes, -1 = do not change)

use_short_slot_time
    Whether the use of short slot time is allowed (0 = no, 1 = yes, -1 = do not change)

basic_rates
    basic rates in IEEE 802.11 format (or NULL for no change)

basic_rates_len
    number of basic rates

ap_isolate
    do not forward packets between connected stations

ht_opmode
    HT Operation mode (u16 = opmode, -1 = do not change)

p2p_ctwindow
    P2P CT Window (-1 = no change)

p2p_opp_ps
    P2P opportunistic PS (-1 = no change)

4. DESCRIPTION

Used to change BSS parameters (mainly for AP mode).

5. AUTHOR

Johannes Berg <>
    Author.

6. COPYRIGHT