From 93b5a5a4ae237d3fc79251d362f024ee797efea3 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 14 Jan 2021 12:54:39 -0800 Subject: [PATCH] netdev: parse expected throughput in netdev_get_station --- src/netdev.c | 9 +++++++++ src/netdev.h | 3 +++ 2 files changed, 12 insertions(+) diff --git a/src/netdev.c b/src/netdev.c index 7d36eb77..0fc0600a 100644 --- a/src/netdev.c +++ b/src/netdev.c @@ -478,6 +478,15 @@ static bool netdev_parse_sta_info(struct l_genl_attr *attr, info->have_tx_mcs = true; break; + + case NL80211_STA_INFO_EXPECTED_THROUGHPUT: + if (len != 4) + return false; + + info->expected_throughput = l_get_u32(data); + info->have_expected_throughput = true; + + break; } } diff --git a/src/netdev.h b/src/netdev.h index daf10bb6..074dc61f 100644 --- a/src/netdev.h +++ b/src/netdev.h @@ -132,11 +132,14 @@ struct netdev_station_info { uint32_t tx_bitrate; uint8_t tx_mcs; + uint32_t expected_throughput; + bool have_cur_rssi : 1; bool have_rx_mcs : 1; bool have_tx_mcs : 1; bool have_rx_bitrate : 1; bool have_tx_bitrate : 1; + bool have_expected_throughput : 1; }; typedef void (*netdev_get_station_cb_t)(const struct netdev_station_info *info,