1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 11:09:54 +03:00
openwrt-xburst/package/iw/patches/100-survey_freq_in_use.patch

12 lines
424 B
Diff
Raw Normal View History

--- a/survey.c
+++ b/survey.c
@@ -46,6 +46,8 @@ static int print_survey_handler(struct n
if (sinfo[NL80211_SURVEY_INFO_FREQUENCY])
printf("\tfrequency:\t%u MHz\n",
nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]));
+ if (sinfo[NL80211_SURVEY_INFO_IN_USE])
+ printf("\tin use\n");
if (sinfo[NL80211_SURVEY_INFO_NOISE])
printf("\tnoise:\t\t%d dBm\n",
(int8_t)nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]));