struct cfg80211_inform_bss — BSS inform data
struct cfg80211_inform_bss { struct ieee80211_channel * chan; enum nl80211_bss_scan_width scan_width; s32 signal; u64 boottime_ns; u64 parent_tsf; u8 parent_bssid[ETH_ALEN]; };
channel the frame was received on
scan width that was used
signal strength value, according to the wiphy's signal type
timestamp (CLOCK_BOOTTIME) when the information was
received; should match the time when the frame was actually
received by the device (not just by the host, in case it was
buffered on the device) and be accurate to about 10ms.
If the frame isn't buffered, just passing the return value of
ktime_get_boot_ns
is likely appropriate.
the time at the start of reception of the first octet of the
timestamp field of the frame. The time is the TSF of the BSS specified
by parent_bssid
.
the BSS according to which parent_tsf
is set. This is set to
the BSS that requested the scan in which the beacon/probe was received.