]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Remove unused EVENT_FT_RRB_RX
authorJouni Malinen <j@w1.fi>
Sat, 1 Nov 2014 17:27:48 +0000 (19:27 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 1 Nov 2014 17:27:48 +0000 (19:27 +0200)
This was used in hostapd driver_test.c, but that driver wrapper has been
removed and there are no remaining or expected users for
EVENT_FT_RRB_RX.

Signed-off-by: Jouni Malinen <j@w1.fi>
src/ap/drv_callbacks.c
src/drivers/driver.h
src/drivers/driver_common.c

index 7153bb8df59cd17690e3ee6e6456a38a17f3f7e6..94df01931e69c964ee4b7bc1bcd18369c957b2cb 100644 (file)
@@ -1023,12 +1023,6 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
                if (hapd->iface->scan_cb)
                        hapd->iface->scan_cb(hapd->iface);
                break;
-#ifdef CONFIG_IEEE80211R
-       case EVENT_FT_RRB_RX:
-               wpa_ft_rrb_rx(hapd->wpa_auth, data->ft_rrb_rx.src,
-                             data->ft_rrb_rx.data, data->ft_rrb_rx.data_len);
-               break;
-#endif /* CONFIG_IEEE80211R */
        case EVENT_WPS_BUTTON_PUSHED:
                hostapd_wps_button_pushed(hapd, NULL);
                break;
index 4645e9a04428df4c17476f6a6704cc51c6156172..348618b4c93364ac5c52b1bff7c9a1c269a2e6c9 100644 (file)
@@ -3333,11 +3333,6 @@ enum wpa_event_type {
         */
        EVENT_ASSOC_TIMED_OUT,
 
-       /**
-        * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
-        */
-       EVENT_FT_RRB_RX,
-
        /**
         * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
         */
@@ -4006,15 +4001,6 @@ union wpa_event_data {
                u8 addr[ETH_ALEN];
        } timeout_event;
 
-       /**
-        * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
-        */
-       struct ft_rrb_rx {
-               const u8 *src;
-               const u8 *data;
-               size_t data_len;
-       } ft_rrb_rx;
-
        /**
         * struct tx_status - Data for EVENT_TX_STATUS events
         */
index eabeb80e20b495547279364cb44e931917bea351..e678b07c2c9ae58e7141574853157b3f5a8c5f9f 100644 (file)
@@ -44,7 +44,6 @@ const char * event_to_string(enum wpa_event_type event)
        E2S(ASSOC_REJECT);
        E2S(AUTH_TIMED_OUT);
        E2S(ASSOC_TIMED_OUT);
-       E2S(FT_RRB_RX);
        E2S(WPS_BUTTON_PUSHED);
        E2S(TX_STATUS);
        E2S(RX_FROM_UNKNOWN);