Add flag IEEE80211_RADIOTAP_F_BADFCS for packets whose checksum

doesn't match their contents.  While I'm here, remove the mention
of field IEEE80211_RADIOTAP_FCS, which wasn't adopted.
This commit is contained in:
dyoung 2005-12-08 20:13:27 +00:00
parent 4793781929
commit da04ad7825

View File

@ -1,5 +1,5 @@
/* $FreeBSD: src/sys/net80211/ieee80211_radiotap.h,v 1.5 2005/01/22 20:12:05 sam Exp $ */
/* $NetBSD: ieee80211_radiotap.h,v 1.12 2005/07/26 22:52:48 dyoung Exp $ */
/* $NetBSD: ieee80211_radiotap.h,v 1.13 2005/12/08 20:13:27 dyoung Exp $ */
/*-
* Copyright (c) 2003, 2004 David Young. All rights reserved.
@ -158,10 +158,6 @@ struct ieee80211_radiotap_header {
*
* Unitless indication of the Rx/Tx antenna for this packet.
* The first antenna is antenna 0.
*
* IEEE80211_RADIOTAP_FCS u_int32_t data
*
* FCS from frame in network byte order.
*/
enum ieee80211_radiotap_type {
IEEE80211_RADIOTAP_TSFT = 0,
@ -212,5 +208,6 @@ enum ieee80211_radiotap_type {
* 802.11 header and payload
* (to 32-bit boundary)
*/
#define IEEE80211_RADIOTAP_F_BADFCS 0x40 /* does not pass FCS check */
#endif /* _NET_IF_IEEE80211RADIOTAP_H_ */