diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-07-03 15:02:08 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-07-03 15:02:08 +0000 |
commit | 3e4bff4b249342451a1e143511f72d3626d7659d (patch) | |
tree | 46a8319480e59dd90fd23020d20b2e613f6ef23b /sys/net80211 | |
parent | 7840c291f6bcb8b9307185db5f7f1d71d2008cff (diff) |
Readd IEEE80211_REASON_RSN_REQUIRED and IEEE80211_REASON_RSN_INCONSISTENT
userland is using these defines -- unbreaks build. Found by jasper@
discussed with reyk@.
Diffstat (limited to 'sys/net80211')
-rw-r--r-- | sys/net80211/ieee80211.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211.h b/sys/net80211/ieee80211.h index ee42d8d45bf..bdd49ae187a 100644 --- a/sys/net80211/ieee80211.h +++ b/sys/net80211/ieee80211.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211.h,v 1.25 2007/07/02 21:18:17 damien Exp $ */ +/* $OpenBSD: ieee80211.h,v 1.26 2007/07/03 15:02:07 claudio Exp $ */ /* $NetBSD: ieee80211.h,v 1.6 2004/04/30 23:51:53 dyoung Exp $ */ /*- @@ -431,6 +431,8 @@ enum { IEEE80211_REASON_ASSOC_LEAVE = 8, IEEE80211_REASON_ASSOC_NOT_AUTHED = 9, + IEEE80211_REASON_RSN_REQUIRED = 11, + IEEE80211_REASON_RSN_INCONSISTENT = 12, IEEE80211_REASON_IE_INVALID = 13, IEEE80211_REASON_MIC_FAILURE = 14, |