monitor: print QoS Map

The actual data in the map is very low level, but this at least shows
us that the IE was included.
This commit is contained in:
James Prestwood 2019-09-13 13:47:04 -07:00 committed by Denis Kenzior
parent 8d3b065022
commit 2fd667af94
1 changed files with 9 additions and 0 deletions

View File

@ -1854,6 +1854,13 @@ static void print_ie_supported_operating_classes(unsigned int level,
print_ie_error(level, label, size, -EINVAL);
}
static void print_qos_map(unsigned int level, const char *label,
const void *data,
uint16_t size)
{
print_attr(level, "QoS Map");
}
static struct attr_entry ie_entry[] = {
{ IE_TYPE_SSID, "SSID",
ATTR_CUSTOM, { .function = print_ie_ssid } },
@ -1902,6 +1909,8 @@ static struct attr_entry ie_entry[] = {
{ IE_TYPE_SUPPORTED_OPERATING_CLASSES, "Supported Operating Classes",
ATTR_CUSTOM,
{ .function = print_ie_supported_operating_classes } },
{ IE_TYPE_QOS_MAP_SET, "QoS Map",
ATTR_CUSTOM, { .function = print_qos_map } },
{ },
};