[net80211] begin fleshing out support for channel survey information to be

pushed back up into net80211.
This commit is contained in:
Adrian Chadd 2016-12-08 07:56:25 +00:00
parent 096d83feb9
commit 36c8d0de0f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=309706

View File

@ -727,6 +727,17 @@ int ieee80211_add_toa_params(struct mbuf *m,
const struct ieee80211_toa_params *p);
int ieee80211_get_toa_params(struct mbuf *m,
struct ieee80211_toa_params *p);
#define IEEE80211_F_SURVEY_TIME 0x00000001
#define IEEE80211_F_SURVEY_TIME_BUSY 0x00000002
#define IEEE80211_F_SURVEY_NOISE_DBM 0x00000004
struct ieee80211_channel_survey {
uint32_t s_flags;
uint32_t s_time;
uint32_t s_time_busy;
int s_noise;
};
#endif /* _KERNEL */
/*