|
@@ -25,6 +25,8 @@ const char * hostapd_hw_mode_txt(int mode);
|
|
int hostapd_hw_get_freq(struct hostapd_data *hapd, int chan);
|
|
int hostapd_hw_get_freq(struct hostapd_data *hapd, int chan);
|
|
int hostapd_hw_get_channel(struct hostapd_data *hapd, int freq);
|
|
int hostapd_hw_get_channel(struct hostapd_data *hapd, int freq);
|
|
int hostapd_check_ht_capab(struct hostapd_iface *iface);
|
|
int hostapd_check_ht_capab(struct hostapd_iface *iface);
|
|
|
|
+int hostapd_prepare_rates(struct hostapd_data *hapd,
|
|
|
|
+ struct hostapd_hw_modes *mode);
|
|
#else /* NEED_AP_MLME */
|
|
#else /* NEED_AP_MLME */
|
|
static inline void
|
|
static inline void
|
|
hostapd_free_hw_features(struct hostapd_hw_modes *hw_features,
|
|
hostapd_free_hw_features(struct hostapd_hw_modes *hw_features,
|
|
@@ -57,6 +59,12 @@ static inline int hostapd_check_ht_capab(struct hostapd_iface *iface)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline int hostapd_prepare_rates(struct hostapd_data *hapd,
|
|
|
|
+ struct hostapd_hw_modes *mode)
|
|
|
|
+{
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
#endif /* NEED_AP_MLME */
|
|
#endif /* NEED_AP_MLME */
|
|
|
|
|
|
#endif /* HW_FEATURES_H */
|
|
#endif /* HW_FEATURES_H */
|