struct station_info — station information
struct station_info { u32 filled; u32 inactive_time; u32 rx_bytes; u32 tx_bytes; u16 llid; u16 plid; u8 plink_state; s8 signal; s8 signal_avg; struct rate_info txrate; u32 rx_packets; u32 tx_packets; u32 tx_retries; u32 tx_failed; u32 rx_dropped_misc; int generation; };
bitflag of flags from enum station_info_flags
time since last station activity (tx/rx) in milliseconds
bytes received from this station
bytes transmitted to this station
mesh local link id
mesh peer link id
mesh peer link state
signal strength of last received packet in dBm
signal strength average in dBm
current unicast bitrate to this station
packets received from this station
packets transmitted to this station
cumulative retry counts
number of failed transmissions (retries exceeded, no ACK)
Dropped for un-specified reason.
generation number for nl80211 dumps. This number should increase every time the list of stations changes, i.e. when a station is added or removed, so that userspace can tell whether it got a consistent snapshot.