diff options
author | Jouni Malinen <j@w1.fi> | 2011-10-30 12:43:30 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2011-10-30 12:53:20 +0200 |
commit | 01a174915678b39a2007a8b4b522254afdfc6a21 (patch) | |
tree | 962bd699e6ed9ceb0e78ae60e652c490ae5bff10 /src/ap/tkip_countermeasures.h | |
parent | e9c3c1afedd2d0c6a0939f40c40701af8c450e1f (diff) | |
download | external_wpa_supplicant_8_ti-01a174915678b39a2007a8b4b522254afdfc6a21.zip external_wpa_supplicant_8_ti-01a174915678b39a2007a8b4b522254afdfc6a21.tar.gz external_wpa_supplicant_8_ti-01a174915678b39a2007a8b4b522254afdfc6a21.tar.bz2 |
Fix TKIP countermeasures stopping in deinit paths
The eloop timeout to stop TKIP countermeasures has to be canceled
on deinit path to avoid leaving bogus timeouts behind.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/ap/tkip_countermeasures.h')
-rw-r--r-- | src/ap/tkip_countermeasures.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ap/tkip_countermeasures.h b/src/ap/tkip_countermeasures.h index 5a1afce..a8ffd16 100644 --- a/src/ap/tkip_countermeasures.h +++ b/src/ap/tkip_countermeasures.h @@ -1,6 +1,6 @@ /* * hostapd / TKIP countermeasures - * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> + * Copyright (c) 2002-2011, Jouni Malinen <j@w1.fi> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -16,5 +16,6 @@ #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 */ |