|
@@ -3068,6 +3068,12 @@ enum nl80211_sta_bss_param {
|
|
|
* @NL80211_STA_INFO_PAD: attribute used for padding for 64-bit alignment
|
|
|
* @NL80211_STA_INFO_ACK_SIGNAL: signal strength of the last ACK frame(u8, dBm)
|
|
|
* @NL80211_STA_INFO_ACK_SIGNAL_AVG: avg signal strength of ACK frames (s8, dBm)
|
|
|
+ * @NL80211_STA_INFO_RX_MPDUS: total number of received packets (MPDUs)
|
|
|
+ * (u32, from this station)
|
|
|
+ * @NL80211_STA_INFO_FCS_ERROR_COUNT: total number of packets (MPDUs) received
|
|
|
+ * with an FCS error (u32, from this station). This count may not include
|
|
|
+ * some packets with an FCS error due to TA corruption. Hence this counter
|
|
|
+ * might not be fully accurate.
|
|
|
* @__NL80211_STA_INFO_AFTER_LAST: internal
|
|
|
* @NL80211_STA_INFO_MAX: highest possible station info attribute
|
|
|
*/
|
|
@@ -3108,6 +3114,8 @@ enum nl80211_sta_info {
|
|
|
NL80211_STA_INFO_PAD,
|
|
|
NL80211_STA_INFO_ACK_SIGNAL,
|
|
|
NL80211_STA_INFO_ACK_SIGNAL_AVG,
|
|
|
+ NL80211_STA_INFO_RX_MPDUS,
|
|
|
+ NL80211_STA_INFO_FCS_ERROR_COUNT,
|
|
|
|
|
|
/* keep last */
|
|
|
__NL80211_STA_INFO_AFTER_LAST,
|