aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-07-13 05:40:48 +0000
committerJörg Mayer <jmayer@loplof.de>2006-07-13 05:40:48 +0000
commit4070ac69674c7f1be76b6c8170553db5a699bc24 (patch)
tree5a9abb784b024728ed447b0a03569f42944d28f9 /epan/dissectors/packet-ieee80211.c
parent64078e4bba9a4368be4679f067792f6a04f3322e (diff)
Decode another byte in Cisco's IE 133 (number of associated clients)
svn path=/trunk/; revision=18726
Diffstat (limited to 'epan/dissectors/packet-ieee80211.c')
-rw-r--r--epan/dissectors/packet-ieee80211.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index a35e2281a8..a08597c2dc 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -1860,8 +1860,11 @@ add_tagged_field (packet_info * pinfo, proto_tree * tree, tvbuff_t * tvb, int of
tvb_format_stringzpad(tvb, offset + 12, 16));
out_buff[SHORT_STR-1] = '\0';
proto_tree_add_string_format (tree, tag_interpretation, tvb, offset + 2,
- tag_len, "", "Tag interpretation: Unknown + Name: %s",
- out_buff);
+ tag_len, "", "Tag interpretation: Unknown + Name: %s #Clients: %u",
+ out_buff,
+ /* Total number off associated clients and
+ repeater access points */
+ tvb_get_guint8(tvb, offset + 28));
if (check_col (pinfo->cinfo, COL_INFO)) {
col_append_fstr(pinfo->cinfo, COL_INFO, ", Name: \"%s\"", out_buff);
}