svn commit: r232095 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Fri Feb 24 05:33:12 UTC 2012


Author: adrian
Date: Fri Feb 24 05:33:11 2012
New Revision: 232095
URL: http://svn.freebsd.org/changeset/base/232095

Log:
  Add a radiotap vendor header definition.

Modified:
  head/sys/net80211/ieee80211_radiotap.h

Modified: head/sys/net80211/ieee80211_radiotap.h
==============================================================================
--- head/sys/net80211/ieee80211_radiotap.h	Fri Feb 24 00:49:18 2012	(r232094)
+++ head/sys/net80211/ieee80211_radiotap.h	Fri Feb 24 05:33:11 2012	(r232095)
@@ -54,6 +54,12 @@
 
 #define	IEEE80211_RADIOTAP_HDRLEN	64	/* XXX deprecated */
 
+struct ieee80211_radiotap_vendor_header {
+	uint8_t		vh_oui[3];	/* 3 byte vendor OUI */
+	uint8_t		vh_sub_ns;	/* Sub namespace of this section */
+	uint16_t	vh_skip_len;	/* Length of this vendor section */
+} __packed;
+
 /*
  * The radio capture header precedes the 802.11 header.
  *


More information about the svn-src-head mailing list