wiphy: Add accessor for supported frequencies

This commit is contained in:
Tim Kourt 2019-02-27 16:44:17 -08:00 committed by Denis Kenzior
parent 9f52036b85
commit 8f09a0c937
2 changed files with 8 additions and 0 deletions

View File

@ -235,6 +235,12 @@ uint32_t wiphy_get_supported_bands(struct wiphy *wiphy)
return scan_freq_set_get_bands(wiphy->supported_freqs);
}
const struct scan_freq_set *wiphy_get_supported_freqs(
const struct wiphy *wiphy)
{
return wiphy->supported_freqs;
}
bool wiphy_can_connect(struct wiphy *wiphy, struct scan_bss *bss)
{
struct ie_rsn_info rsn_info;

View File

@ -45,6 +45,8 @@ struct wiphy *wiphy_find(int wiphy_id);
const char *wiphy_get_path(struct wiphy *wiphy);
uint32_t wiphy_get_supported_bands(struct wiphy *wiphy);
const struct scan_freq_set *wiphy_get_supported_freqs(
const struct wiphy *wiphy);
bool wiphy_can_connect(struct wiphy *wiphy, struct scan_bss *bss);
bool wiphy_can_randomize_mac_addr(struct wiphy *wiphy);
bool wiphy_has_feature(struct wiphy *wiphy, uint32_t feature);