diff --git a/src/wiphy.c b/src/wiphy.c index 511bb27f..f09aeb44 100644 --- a/src/wiphy.c +++ b/src/wiphy.c @@ -283,6 +283,11 @@ const char *wiphy_get_path(struct wiphy *wiphy) return path; } +uint32_t wiphy_get_id(struct wiphy *wiphy) +{ + return wiphy->id; +} + uint32_t wiphy_get_supported_bands(struct wiphy *wiphy) { if (!wiphy->supported_freqs) diff --git a/src/wiphy.h b/src/wiphy.h index 67eafe3c..1238e0b3 100644 --- a/src/wiphy.h +++ b/src/wiphy.h @@ -54,6 +54,7 @@ void wiphy_update_from_genl(struct wiphy *wiphy, const char *name, bool wiphy_constrain_freq_set(const struct wiphy *wiphy, struct scan_freq_set *set); +uint32_t wiphy_get_id(struct wiphy *wiphy); 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(