struct_ieee80211_rx_status

Langue: en

Version: June 2009 (debian - 07/07/09)

Section: 9 (Appels noyau Linux)

NAME

struct_ieee80211_rx_status - receive status

SYNOPSIS

 struct ieee80211_rx_status {
   u64 mactime;
   enum ieee80211_band band;
   int freq;
   int ssi;
   int signal;
   int noise;
   int antenna;
   int rate_idx;
   int flag;
 };  
 

MEMBERS

mactime

value in microseconds of the 64-bit Time Synchronization Function (TSF) timer when the first data symbol (MPDU) arrived at the hardware.

band

the active band when this frame was received

freq

frequency the radio was tuned to when receiving this frame, in MHz

ssi

signal strength when receiving this frame

signal

used as 'qual' in statistics reporting

noise

PHY noise when receiving this frame

antenna

antenna used

rate_idx

index of data rate into band's supported rates

flag


RX_FLAG_*

DESCRIPTION

The low-level driver should provide this information (the subset supported by hardware) to the 802.11 code with each received frame.

AUTHOR

Johannes Berg <johannes@sipsolutions.net>

Author.