From 4070ac69674c7f1be76b6c8170553db5a699bc24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Thu, 13 Jul 2006 05:40:48 +0000 Subject: [PATCH] Decode another byte in Cisco's IE 133 (number of associated clients) svn path=/trunk/; revision=18726 --- epan/dissectors/packet-ieee80211.c | 7 +++++-- 1 file 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); }