diff options
author | kevlo <kevlo@FreeBSD.org> | 2014-01-08 08:06:56 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2014-01-08 08:06:56 +0000 |
commit | 2d30c961db5c3bc19c29cd1603246e8909d1cb2a (patch) | |
tree | 97a468b7a7d2aca097f707aff8e8b253289d3b07 /contrib/libpcap | |
parent | bb4969cec51d00624175f39abdac7110ce27fa1e (diff) | |
download | FreeBSD-src-2d30c961db5c3bc19c29cd1603246e8909d1cb2a.zip FreeBSD-src-2d30c961db5c3bc19c29cd1603246e8909d1cb2a.tar.gz |
Rename definition of IEEE80211_FC1_WEP to IEEE80211_FC1_PROTECTED.
The origin of WEP comes from IEEE Std 802.11-1997 where it defines
whether the frame body of MAC frame has been encrypted using WEP
algorithm or not.
IEEE Std. 802.11-2007 changes WEP to Protected Frame, indicates
whether the frame is protected by a cryptographic encapsulation
algorithm.
Reviewed by: adrian, rpaulo
Diffstat (limited to 'contrib/libpcap')
-rw-r--r-- | contrib/libpcap/ieee80211.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libpcap/ieee80211.h b/contrib/libpcap/ieee80211.h index d79f0f8..894a9e7 100644 --- a/contrib/libpcap/ieee80211.h +++ b/contrib/libpcap/ieee80211.h @@ -90,7 +90,7 @@ #define IEEE80211_FC1_RETRY 0x08 #define IEEE80211_FC1_PWR_MGT 0x10 #define IEEE80211_FC1_MORE_DATA 0x20 -#define IEEE80211_FC1_WEP 0x40 +#define IEEE80211_FC1_PROTECTED 0x40 #define IEEE80211_FC1_ORDER 0x80 #define IEEE80211_SEQ_FRAG_MASK 0x000f |