Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Jan 2017 01:54:32 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r311576 - head/sys/net80211
Message-ID:  <201701070154.v071sW3T008776@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Sat Jan  7 01:54:32 2017
New Revision: 311576
URL: https://svnweb.freebsd.org/changeset/base/311576

Log:
  [net80211] add VHT IEs to scan elements.
  
  In preparation for VHT station support, we need to store VHT IEs when
  scanning so we can choose to upgrade to VHT.
  
  This doesn't change the ABI - it just steals spare[] entries.

Modified:
  head/sys/net80211/ieee80211_scan.h

Modified: head/sys/net80211/ieee80211_scan.h
==============================================================================
--- head/sys/net80211/ieee80211_scan.h	Sat Jan  7 01:53:27 2017	(r311575)
+++ head/sys/net80211/ieee80211_scan.h	Sat Jan  7 01:54:32 2017	(r311576)
@@ -250,7 +250,9 @@ struct ieee80211_scanparams {
 	uint8_t		*quiet;
 	uint8_t		*meshid;
 	uint8_t		*meshconf;
-	uint8_t		*spare[3];
+	uint8_t		*vhtcap;
+	uint8_t		*vhtopmode;
+	uint8_t		*spare[1];
 };
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701070154.v071sW3T008776>