]> git.ipfire.org Git - thirdparty/iw.git/blobdiff - interface.c
iw: fix some scan code indentation
[thirdparty/iw.git] / interface.c
index a19c83f0def78644d045b7b967c2b161ed21d396..712bbdcad283fa23192838f477d434edc4d21ef2 100644 (file)
@@ -441,6 +441,12 @@ static int print_iface_handler(struct nl_msg *msg, void *arg)
                       indent, txp / 100, txp % 100);
        }
 
+       if (tb_msg[NL80211_ATTR_TXQ_STATS]) {
+               char buf[150];
+               parse_txq_stats(buf, sizeof(buf), tb_msg[NL80211_ATTR_TXQ_STATS], 1, -1, indent);
+               printf("%s\tmulticast TXQ:%s\n", indent, buf);
+       }
+
        return NL_SKIP;
 }