diff options
author | Jouni Malinen <j@w1.fi> | 2010-01-03 12:37:02 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2010-01-03 12:37:02 +0200 |
commit | 2a8b74163e0695169834fb2052220af7d55df9b2 (patch) | |
tree | 4c7fe9109c7bca3cd7d9fa4c42b55271ebec2bf2 /src/ap/hostapd.h | |
parent | 3af1f9cb14ee55a0aad737a5737689ceb066b413 (diff) | |
download | external_wpa_supplicant_8_ti-2a8b74163e0695169834fb2052220af7d55df9b2.zip external_wpa_supplicant_8_ti-2a8b74163e0695169834fb2052220af7d55df9b2.tar.gz external_wpa_supplicant_8_ti-2a8b74163e0695169834fb2052220af7d55df9b2.tar.bz2 |
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.
Diffstat (limited to 'src/ap/hostapd.h')
-rw-r--r-- | src/ap/hostapd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ap/hostapd.h b/src/ap/hostapd.h index 39fb6c9..86676ff 100644 --- a/src/ap/hostapd.h +++ b/src/ap/hostapd.h @@ -40,6 +40,12 @@ struct hostapd_rate_data { int flags; /* HOSTAPD_RATE_ flags */ }; +struct hostapd_frame_info { + u32 channel; + u32 datarate; + u32 ssi_signal; +}; + struct hostapd_driver_ops { int (*set_ap_wps_ie)(struct hostapd_data *hapd, |