svn commit: r311576 - head/sys/net80211
Adrian Chadd
adrian at FreeBSD.org
Sat Jan 7 01:54:33 UTC 2017
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];
};
/*
More information about the svn-src-all
mailing list