mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-18 01:53:06 -05:00
Remove the GPL notification text from the files that were initially contributed by myself. Signed-hostap: Jouni Malinen <j@w1.fi>
16 lines
452 B
C
16 lines
452 B
C
/*
|
|
* hostapd / TKIP countermeasures
|
|
* Copyright (c) 2002-2011, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef TKIP_COUNTERMEASURES_H
|
|
#define TKIP_COUNTERMEASURES_H
|
|
|
|
void michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local);
|
|
void ieee80211_tkip_countermeasures_deinit(struct hostapd_data *hapd);
|
|
|
|
#endif /* TKIP_COUNTERMEASURES_H */
|