From 802.11k-2008 : Amendment 1: Radio Resource Measurement of Wireless LANs Add Radio Measurement flag from Capability Information Field

svn path=/trunk/; revision=47838
This commit is contained in:
Alexis La Goutte 2013-02-23 11:21:29 +00:00
parent d336579317
commit cafb554d29
1 changed files with 8 additions and 0 deletions

View File

@ -3092,6 +3092,7 @@ static int hf_ieee80211_ff_short_slot_time = -1;
static int hf_ieee80211_ff_dsss_ofdm = -1;
static int hf_ieee80211_ff_cf_spec_man = -1;
static int hf_ieee80211_ff_cf_apsd = -1;
static int hf_ieee80211_ff_radio_measurement = -1;
static int hf_ieee80211_ff_cf_del_blk_ack = -1;
static int hf_ieee80211_ff_cf_imm_blk_ack = -1;
@ -5570,6 +5571,8 @@ add_ff_cap_info(proto_tree *tree, tvbuff_t *tvb, int offset)
2, ENC_LITTLE_ENDIAN);
proto_tree_add_item(cap_tree, hf_ieee80211_ff_cf_apsd, tvb, offset, 2,
ENC_LITTLE_ENDIAN);
proto_tree_add_item(cap_tree, hf_ieee80211_ff_radio_measurement, tvb, offset, 2,
ENC_LITTLE_ENDIAN);
proto_tree_add_item(cap_tree, hf_ieee80211_ff_dsss_ofdm, tvb, offset, 2,
ENC_LITTLE_ENDIAN);
proto_tree_add_item(cap_tree, hf_ieee80211_ff_cf_del_blk_ack, tvb, offset, 2,
@ -14393,6 +14396,11 @@ proto_register_ieee80211 (void)
FT_BOOLEAN, 16, TFS (&cf_apsd_flags), 0x0800,
NULL, HFILL }},
{&hf_ieee80211_ff_radio_measurement,
{"Radio Measurement", "wlan_mgt.fixed.capabilities.radio_measurement",
FT_BOOLEAN, 16, NULL, 0x1000,
NULL, HFILL }},
{&hf_ieee80211_ff_dsss_ofdm,
{"DSSS-OFDM", "wlan_mgt.fixed.capabilities.dsss_ofdm",
FT_BOOLEAN, 16, TFS (&dsss_ofdm_flags), 0x2000,