aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-10-03 10:30:11 -0700
committerGuy Harris <guy@alum.mit.edu>2015-10-03 17:30:41 +0000
commit877f450681c5e90b823780cae7aceea291074517 (patch)
treebfe27ab71d5d04d3c4cfe86e90b53959c2c2cc40 /epan/dissectors/packet-ieee80211.h
parent4909b3f98b88cb140701367c3d5a6635673fb123 (diff)
Expand some comments.
Fix some indentation while we're at it. Change-Id: Ic25bebadd8c2c3941e6f965b48e22a6a1aac6168 Reviewed-on: https://code.wireshark.org/review/10769 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-ieee80211.h')
-rw-r--r--epan/dissectors/packet-ieee80211.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ieee80211.h b/epan/dissectors/packet-ieee80211.h
index 9d47e8947a..ea24b173be 100644
--- a/epan/dissectors/packet-ieee80211.h
+++ b/epan/dissectors/packet-ieee80211.h
@@ -132,7 +132,7 @@ gboolean is_broadcast_bssid(const address *bssid);
#define FLAG_POWER_MGT 0x10
#define FLAG_MORE_DATA 0x20
#define FLAG_PROTECTED 0x40
-#define FLAG_ORDER 0x80
+#define FLAG_ORDER 0x80 /* overloaded for "has HT control" */
/*
* Test bits in the flags field.
@@ -148,8 +148,8 @@ gboolean is_broadcast_bssid(const address *bssid);
#define POWER_MGT_STATUS(x) ((x) & FLAG_POWER_MGT)
#define HAS_MORE_DATA(x) ((x) & FLAG_MORE_DATA)
#define IS_PROTECTED(x) ((x) & FLAG_PROTECTED)
-#define IS_STRICTLY_ORDERED(x) ((x) & FLAG_ORDER) /* non-QoS data frames */
-#define HAS_HT_CONTROL(x) ((x) & FLAG_ORDER) /* management and QoS data frames */
+#define IS_STRICTLY_ORDERED(x) ((x) & FLAG_ORDER) /* for non-QoS data frames */
+#define HAS_HT_CONTROL(x) ((x) & FLAG_ORDER) /* for management and QoS data frames */
/*
* Extract subfields from the flags field.