[ifconfig] add UAPSD and LPDC flags
* Add UAPSD and LDPC flags * expand the FLAGS section; it's kinda grown since I started hacking on net80211..
This commit is contained in:
parent
3e2d36ffa6
commit
c11c97cc61
@ -125,6 +125,8 @@
|
||||
#define IEEE80211_NODE_AMSDU_RX 0x040000 /* AMSDU rx enabled */
|
||||
#define IEEE80211_NODE_AMSDU_TX 0x080000 /* AMSDU tx enabled */
|
||||
#define IEEE80211_NODE_VHT 0x100000 /* VHT enabled */
|
||||
#define IEEE80211_NODE_LDPC 0x200000 /* LDPC enabled */
|
||||
#define IEEE80211_NODE_UAPSD 0x400000 /* UAPSD enabled */
|
||||
#endif
|
||||
|
||||
#define MAXCHAN 1536 /* max 1.5K channels */
|
||||
@ -2637,6 +2639,10 @@ getflags(int flags)
|
||||
*cp++ = 't';
|
||||
if (flags & IEEE80211_NODE_AMSDU_RX)
|
||||
*cp++ = 'r';
|
||||
if (flags & IEEE80211_NODE_UAPSD)
|
||||
*cp++ = 'U';
|
||||
if (flags & IEEE80211_NODE_LDPC)
|
||||
*cp++ = 'L';
|
||||
*cp = '\0';
|
||||
return flagstring;
|
||||
}
|
||||
@ -3846,8 +3852,8 @@ list_stations(int s)
|
||||
, "TXSEQ"
|
||||
, "RXSEQ"
|
||||
);
|
||||
else
|
||||
printf("%-17.17s %4s %4s %4s %4s %4s %6s %6s %4s %-7s\n"
|
||||
else
|
||||
printf("%-17.17s %4s %4s %4s %4s %4s %6s %6s %4s %-12s\n"
|
||||
, "ADDR"
|
||||
, "AID"
|
||||
, "CHAN"
|
||||
@ -3881,8 +3887,8 @@ list_stations(int s)
|
||||
, gettxseq(si)
|
||||
, getrxseq(si)
|
||||
);
|
||||
else
|
||||
printf("%s %4u %4d %3dM %4.1f %4d %6d %6d %-4.4s %-7.7s"
|
||||
else
|
||||
printf("%s %4u %4d %3dM %4.1f %4d %6d %6d %-4.4s %-12.12s"
|
||||
, ether_ntoa((const struct ether_addr*)
|
||||
si->isi_macaddr)
|
||||
, IEEE80211_AID(si->isi_associd)
|
||||
|
Loading…
Reference in New Issue
Block a user