[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:
Adrian Chadd 2020-06-16 04:17:08 +00:00
parent 3e2d36ffa6
commit c11c97cc61

View File

@ -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;
}
@ -3847,7 +3853,7 @@ list_stations(int s)
, "RXSEQ"
);
else
printf("%-17.17s %4s %4s %4s %4s %4s %6s %6s %4s %-7s\n"
printf("%-17.17s %4s %4s %4s %4s %4s %6s %6s %4s %-12s\n"
, "ADDR"
, "AID"
, "CHAN"
@ -3882,7 +3888,7 @@ list_stations(int s)
, getrxseq(si)
);
else
printf("%s %4u %4d %3dM %4.1f %4d %6d %6d %-4.4s %-7.7s"
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)