1STRUCT BSS_PARAMETER(9) Actions and configuration STRUCT BSS_PARAMETER(9)
2
3
4
6 struct_bss_parameters - BSS parameters
7
9 struct bss_parameters {
10 int use_cts_prot;
11 int use_short_preamble;
12 int use_short_slot_time;
13 const u8 * basic_rates;
14 u8 basic_rates_len;
15 int ap_isolate;
16 int ht_opmode;
17 s8 p2p_ctwindow;
18 s8 p2p_opp_ps;
19 };
20
22 use_cts_prot
23 Whether to use CTS protection (0 = no, 1 = yes, -1 = do not change)
24
25 use_short_preamble
26 Whether the use of short preambles is allowed (0 = no, 1 = yes, -1
27 = do not change)
28
29 use_short_slot_time
30 Whether the use of short slot time is allowed (0 = no, 1 = yes, -1
31 = do not change)
32
33 basic_rates
34 basic rates in IEEE 802.11 format (or NULL for no change)
35
36 basic_rates_len
37 number of basic rates
38
39 ap_isolate
40 do not forward packets between connected stations
41
42 ht_opmode
43 HT Operation mode (u16 = opmode, -1 = do not change)
44
45 p2p_ctwindow
46 P2P CT Window (-1 = no change)
47
48 p2p_opp_ps
49 P2P opportunistic PS (-1 = no change)
50
52 Used to change BSS parameters (mainly for AP mode).
53
55 Johannes Berg <johannes@sipsolutions.net>
56 Author.
57
59Kernel Hackers Manual 3.10 June 2019 STRUCT BSS_PARAMETER(9)