Decode another byte in Cisco's IE 133 (number of associated clients)
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 13 Jul 2006 05:40:48 +0000 (05:40 +0000)
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 13 Jul 2006 05:40:48 +0000 (05:40 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18726 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-ieee80211.c

index a35e2281a84b95831412e9482985b13576ede4bd..a08597c2dc132f422adb418dad5634e04cabae3b 100644 (file)
@@ -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);
       }