commit | f9c112b60d2c551f43419054f9613e3ddac8be18 | [log] [tgz] |
---|---|---|
author | Johannes Berg <johannes@sipsolutions.net> | Wed Mar 24 23:28:03 2010 -0700 |
committer | Johannes Berg <johannes@sipsolutions.net> | Wed Mar 24 23:28:03 2010 -0700 |
tree | 37181748c7cfc1ff03441787d41d6fd7a1ce2c15 | |
parent | 2650d46b45f727ca8ee49faa4c6bd65da2550c4e [diff] [blame] |
print max scan IE length
diff --git a/info.c b/info.c index 1a1b588..512e777 100644 --- a/info.c +++ b/info.c
@@ -139,6 +139,9 @@ if (tb_msg[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]) printf("\tmax # scan SSIDs: %d\n", nla_get_u8(tb_msg[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])); + if (tb_msg[NL80211_ATTR_MAX_SCAN_IE_LEN]) + printf("\tmax scan IEs length: %d bytes\n", + nla_get_u32(tb_msg[NL80211_ATTR_MAX_SCAN_IE_LEN])); if (tb_msg[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) { unsigned int frag;