5f0bca77a8
This makes the initial OBSS scans in AP mode before starting 40 MHz BSS more robust. In addition, HT20 can be used as a backup option if none of the scans succeed. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
71 lines
1.8 KiB
C
71 lines
1.8 KiB
C
/*
|
|
* hostapd / Hardware feature query and different modes
|
|
* Copyright 2002-2003, Instant802 Networks, Inc.
|
|
* Copyright 2005-2006, Devicescape Software, Inc.
|
|
* Copyright (c) 2008-2011, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef HW_FEATURES_H
|
|
#define HW_FEATURES_H
|
|
|
|
#ifdef NEED_AP_MLME
|
|
void hostapd_free_hw_features(struct hostapd_hw_modes *hw_features,
|
|
size_t num_hw_features);
|
|
int hostapd_get_hw_features(struct hostapd_iface *iface);
|
|
int hostapd_acs_completed(struct hostapd_iface *iface, int err);
|
|
int hostapd_select_hw_mode(struct hostapd_iface *iface);
|
|
const char * hostapd_hw_mode_txt(int mode);
|
|
int hostapd_hw_get_freq(struct hostapd_data *hapd, int chan);
|
|
int hostapd_hw_get_channel(struct hostapd_data *hapd, int freq);
|
|
int hostapd_check_ht_capab(struct hostapd_iface *iface);
|
|
int hostapd_prepare_rates(struct hostapd_iface *iface,
|
|
struct hostapd_hw_modes *mode);
|
|
void hostapd_stop_setup_timers(struct hostapd_iface *iface);
|
|
#else /* NEED_AP_MLME */
|
|
static inline void
|
|
hostapd_free_hw_features(struct hostapd_hw_modes *hw_features,
|
|
size_t num_hw_features)
|
|
{
|
|
}
|
|
|
|
static inline int hostapd_get_hw_features(struct hostapd_iface *iface)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static inline int hostapd_select_hw_mode(struct hostapd_iface *iface)
|
|
{
|
|
return -100;
|
|
}
|
|
|
|
static inline const char * hostapd_hw_mode_txt(int mode)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static inline int hostapd_hw_get_freq(struct hostapd_data *hapd, int chan)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static inline int hostapd_check_ht_capab(struct hostapd_iface *iface)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int hostapd_prepare_rates(struct hostapd_iface *iface,
|
|
struct hostapd_hw_modes *mode)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void hostapd_stop_setup_timers(struct hostapd_iface *iface)
|
|
{
|
|
}
|
|
|
|
#endif /* NEED_AP_MLME */
|
|
|
|
#endif /* HW_FEATURES_H */
|