svn commit: r307470 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Mon Oct 17 04:30:11 UTC 2016


Author: adrian
Date: Mon Oct 17 04:30:10 2016
New Revision: 307470
URL: https://svnweb.freebsd.org/changeset/base/307470

Log:
  [net80211] add some more RX flags.

Modified:
  head/sys/net80211/ieee80211_freebsd.h

Modified: head/sys/net80211/ieee80211_freebsd.h
==============================================================================
--- head/sys/net80211/ieee80211_freebsd.h	Mon Oct 17 04:07:13 2016	(r307469)
+++ head/sys/net80211/ieee80211_freebsd.h	Mon Oct 17 04:30:10 2016	(r307470)
@@ -652,6 +652,12 @@ int	ieee80211_get_xmit_params(struct mbu
 #define	IEEE80211_RX_F_AMSDU_MORE	0x00000008 /* This is another decap AMSDU frame in the batch */
 #define	IEEE80211_RX_F_AMPDU		0x00000010 /* This is the start of an decap AMPDU list */
 #define	IEEE80211_RX_F_AMPDU_MORE	0x00000020 /* This is another decap AMPDU frame in the batch */
+#define	IEEE80211_RX_F_FAIL_FCSCRC	0x00000040 /* Failed CRC/FCS */
+#define	IEEE80211_RX_F_FAIL_MIC		0x00000080 /* Failed MIC check */
+#define	IEEE80211_RX_F_DECRYPTED	0x00000100 /* Hardware decrypted */
+#define	IEEE80211_RX_F_IV_STRIP		0x00000200 /* Decrypted; IV stripped */
+#define	IEEE80211_RX_F_MMIC_STRIP	0x00000400 /* Decrypted; MMIC stripped */
+#define	IEEE80211_RX_F_SHORTGI		0x00000800 /* This is a short-GI frame */
 
 /* Channel width */
 #define	IEEE80211_RX_FW_20MHZ		1


More information about the svn-src-head mailing list