Changeset View
Changeset View
Standalone View
Standalone View
sys/net80211/ieee80211_scan.h
| Show First 20 Lines • Show All 276 Lines • ▼ Show 20 Lines | struct ieee80211_scan_entry { | ||||
| uint16_t se_intval; /* beacon interval (host byte order) */ | uint16_t se_intval; /* beacon interval (host byte order) */ | ||||
| uint16_t se_capinfo; /* capabilities (host byte order) */ | uint16_t se_capinfo; /* capabilities (host byte order) */ | ||||
| struct ieee80211_channel *se_chan;/* channel where sta found */ | struct ieee80211_channel *se_chan;/* channel where sta found */ | ||||
| uint16_t se_timoff; /* byte offset to TIM ie */ | uint16_t se_timoff; /* byte offset to TIM ie */ | ||||
| uint16_t se_fhdwell; /* FH only (host byte order) */ | uint16_t se_fhdwell; /* FH only (host byte order) */ | ||||
| uint8_t se_fhindex; /* FH only */ | uint8_t se_fhindex; /* FH only */ | ||||
| uint8_t se_dtimperiod; /* DTIM period */ | uint8_t se_dtimperiod; /* DTIM period */ | ||||
| uint16_t se_erp; /* ERP from beacon/probe resp */ | uint16_t se_erp; /* ERP from beacon/probe resp */ | ||||
| int8_t se_rssi; /* avg'd recv ssi */ | net80211_rssi_t se_rssi; /* avg'd recv ssi */ | ||||
| int8_t se_noise; /* noise floor */ | int8_t se_noise; /* noise floor */ | ||||
| uint8_t se_cc[2]; /* captured country code */ | uint8_t se_cc[2]; /* captured country code */ | ||||
| uint8_t se_meshid[2+IEEE80211_MESHID_LEN]; | uint8_t se_meshid[2+IEEE80211_MESHID_LEN]; | ||||
| struct ieee80211_ies se_ies; /* captured ie's */ | struct ieee80211_ies se_ies; /* captured ie's */ | ||||
| u_int se_age; /* age of entry (0 on create) */ | u_int se_age; /* age of entry (0 on create) */ | ||||
| }; | }; | ||||
| MALLOC_DECLARE(M_80211_SCAN); | MALLOC_DECLARE(M_80211_SCAN); | ||||
| ▲ Show 20 Lines • Show All 60 Lines • Show Last 20 Lines | |||||