Home | History | Annotate | Download | only in ap
      1 /*
      2  * hostapd / TKIP countermeasures
      3  * Copyright (c) 2002-2012, Jouni Malinen <j (at) w1.fi>
      4  *
      5  * This software may be distributed under the terms of the BSD license.
      6  * See README for more details.
      7  */
      8 
      9 #ifndef TKIP_COUNTERMEASURES_H
     10 #define TKIP_COUNTERMEASURES_H
     11 
     12 int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local);
     13 void ieee80211_tkip_countermeasures_deinit(struct hostapd_data *hapd);
     14 
     15 #endif /* TKIP_COUNTERMEASURES_H */
     16