1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

iw: update to 0.9.21, add support for showing the in-use flag for survey data

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23155 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2010-09-29 15:16:21 +00:00
parent 3d7914783f
commit 0594958cad
4 changed files with 86 additions and 32 deletions

View File

@@ -0,0 +1,11 @@
--- 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]));