ec8f36afca
The new "bss_load_update_period" parameter can be used to configure hostapd to advertise its BSS Load element in Beacon and Probe Response frames. This parameter is in the units of BUs (Beacon Units). When enabled, the STA Count and the Channel Utilization value will be updated periodically in the BSS Load element. The AAC is set to 0 sinze explicit admission control is not supported. Channel Utilization is calculated based on the channel survey information from the driver and as such, requires a driver that supports providing that information for the current operating channel. Signed-off-by: Kyeyoon Park <kyeyoonp@qca.qualcomm.com>
17 lines
376 B
C
17 lines
376 B
C
/*
|
|
* BSS load update
|
|
* Copyright (c) 2014, Qualcomm Atheros, Inc.
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef BSS_LOAD_UPDATE_H
|
|
#define BSS_LOAD_UPDATE_H
|
|
|
|
|
|
int bss_load_update_init(struct hostapd_data *hapd);
|
|
void bss_load_update_deinit(struct hostapd_data *hapd);
|
|
|
|
|
|
#endif /* BSS_LOAD_UPDATE_H */
|