diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2009-04-09 19:42:19 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-04-09 19:42:19 +0300 |
commit | 83421302697d6bd7eddf429fddc56bdf393b9cd6 (patch) | |
tree | 46366b830b3f4122d98336f6aac95d42228dd1d1 /hostapd/driver_i.h | |
parent | 5b7b85f669afbd508f9a06d1b7729556b0a75ff4 (diff) | |
download | external_wpa_supplicant_8_ti-83421302697d6bd7eddf429fddc56bdf393b9cd6.zip external_wpa_supplicant_8_ti-83421302697d6bd7eddf429fddc56bdf393b9cd6.tar.gz external_wpa_supplicant_8_ti-83421302697d6bd7eddf429fddc56bdf393b9cd6.tar.bz2 |
Remove flags parameter from send_mgmt_frame() driver op
This was not documented properly and was not really used nor would it be
suitable to be used in generic way as it was implemented. It is better
to just remove the parameter since there does not seem to be any
reasonable use for it.
Diffstat (limited to 'hostapd/driver_i.h')
-rw-r--r-- | hostapd/driver_i.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hostapd/driver_i.h b/hostapd/driver_i.h index 81be227..170c3b3 100644 --- a/hostapd/driver_i.h +++ b/hostapd/driver_i.h @@ -175,12 +175,11 @@ hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len) } static inline int -hostapd_send_mgmt_frame(struct hostapd_data *hapd, const void *msg, size_t len, - int flags) +hostapd_send_mgmt_frame(struct hostapd_data *hapd, const void *msg, size_t len) { if (hapd->driver == NULL || hapd->driver->send_mgmt_frame == NULL) return 0; - return hapd->driver->send_mgmt_frame(hapd->drv_priv, msg, len, flags); + return hapd->driver->send_mgmt_frame(hapd->drv_priv, msg, len); } static inline int |