Move struct hostapd_frame_info definition away from driver API

This is internal data structure for hostapd/AP functionality and does
not need to be defined in driver.h.
This commit is contained in:
Jouni Malinen 2010-01-03 12:37:02 +02:00
parent 3af1f9cb14
commit 2a8b74163e
7 changed files with 37 additions and 34 deletions

View file

@ -1957,7 +1957,8 @@ union wpa_event_data {
struct rx_mgmt {
const u8 *frame;
size_t frame_len;
struct hostapd_frame_info *fi;
u32 datarate;
u32 ssi_signal;
} rx_mgmt;
/**
@ -2057,12 +2058,6 @@ void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
void hostapd_eapol_receive(struct hostapd_data *hapd, const u8 *sa,
const u8 *buf, size_t len);
struct hostapd_frame_info {
u32 channel;
u32 datarate;
u32 ssi_signal;
};
struct hostapd_data * hostapd_sta_get_bss(struct hostapd_data *hapd,
const u8 *addr);