2009-01-09 16:12:33 +01:00
|
|
|
/*
|
|
|
|
* hostapd / TKIP countermeasures
|
2012-11-18 12:06:03 +01:00
|
|
|
* Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi>
|
2009-01-09 16:12:33 +01:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2009-01-09 16:12:33 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TKIP_COUNTERMEASURES_H
|
|
|
|
#define TKIP_COUNTERMEASURES_H
|
|
|
|
|
2012-11-18 12:06:03 +01:00
|
|
|
int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local);
|
2011-10-30 11:43:30 +01:00
|
|
|
void ieee80211_tkip_countermeasures_deinit(struct hostapd_data *hapd);
|
2009-01-09 16:12:33 +01:00
|
|
|
|
|
|
|
#endif /* TKIP_COUNTERMEASURES_H */
|