|
@@ -36,9 +36,9 @@ static int hostapd_get_sta_tx_rx(struct hostapd_data *hapd,
|
|
|
return 0;
|
|
|
|
|
|
ret = os_snprintf(buf, buflen, "rx_packets=%lu\ntx_packets=%lu\n"
|
|
|
- "rx_bytes=%llu\ntx_bytes=%llu\n",
|
|
|
+ "rx_bytes=%llu\ntx_bytes=%llu\ninactive_msec=%lu\n",
|
|
|
data.rx_packets, data.tx_packets,
|
|
|
- data.rx_bytes, data.tx_bytes);
|
|
|
+ data.rx_bytes, data.tx_bytes, data.inactive_msec);
|
|
|
if (os_snprintf_error(buflen, ret))
|
|
|
return 0;
|
|
|
return ret;
|