Mesh: QoS Control field bit flags fix.

* The following bit flags where incroccetly defined:
    o Mesh Control Present
    o Mesh Power Save Level
    o RSPI
  This is now corrected according to Table 8.4 as per IEEE 802.11 2012;

Approved by:	adrian (mentor)
This commit is contained in:
Monthadar Al Jaberi 2013-02-14 20:00:38 +00:00
parent b2dc8cf4e2
commit 0cc7a79be6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246807

View File

@ -200,11 +200,11 @@ struct ieee80211_qosframe_addr4 {
#define IEEE80211_QOS_EOSP_S 4
#define IEEE80211_QOS_TID 0x0f
/* qos[1] byte used for all frames sent by mesh STAs in a mesh BSS */
#define IEEE80211_QOS_MC 0x10 /* Mesh control */
#define IEEE80211_QOS_MC 0x01 /* Mesh control */
/* Mesh power save level*/
#define IEEE80211_QOS_MESH_PSL 0x20
#define IEEE80211_QOS_MESH_PSL 0x02
/* Mesh Receiver Service Period Initiated */
#define IEEE80211_QOS_RSPI 0x40
#define IEEE80211_QOS_RSPI 0x04
/* bits 11 to 15 reserved */
/* does frame have QoS sequence control data */