diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2008-11-13 13:42:36 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2008-11-13 13:42:36 +0000 |
commit | 3baca67d3284059df26e2e50ae3a7b964b322a35 (patch) | |
tree | 39d73b26d1275639383494d481b3e85585524615 /sys/net80211/ieee80211_var.h | |
parent | f62a97eb1122c01341591b3119d47583c8f4326c (diff) |
use different TSCs when sending the two MIC failure report frames
to our AP as we enter TKIP countermeasures by caching the TSC of
the last frame to fail the MIC; prompted by and ok damien@
Diffstat (limited to 'sys/net80211/ieee80211_var.h')
-rw-r--r-- | sys/net80211/ieee80211_var.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_var.h b/sys/net80211/ieee80211_var.h index 45123db4414..5ca29ad46d5 100644 --- a/sys/net80211/ieee80211_var.h +++ b/sys/net80211/ieee80211_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_var.h,v 1.54 2008/09/27 15:16:09 damien Exp $ */ +/* $OpenBSD: ieee80211_var.h,v 1.55 2008/11/13 13:42:35 djm Exp $ */ /* $NetBSD: ieee80211_var.h,v 1.7 2004/05/06 03:07:10 dyoung Exp $ */ /*- @@ -277,6 +277,7 @@ struct ieee80211com { struct timeout ic_rsn_timeout; u_int16_t ic_rsn_keydonesta; int ic_tkip_micfail; + u_int64_t ic_tkip_micfail_last_tsc; TAILQ_HEAD(, ieee80211_pmk) ic_pmksa; /* PMKSA cache */ u_int ic_rsnprotos; |