usb: dissect other speed config descriptors

Other speed config descriptors are identical to config descriptors, it's
just the request that is different.  Handle this request so that other
speed config responses are decoded.
This commit is contained in:
John Keeping 2022-01-06 11:59:53 +00:00
parent b587d6a266
commit e9900c38c2
1 changed files with 1 additions and 0 deletions

View File

@ -2937,6 +2937,7 @@ dissect_usb_setup_get_descriptor_response(packet_info *pinfo, proto_tree *tree,
offset = dissect_usb_device_descriptor(pinfo, tree, tvb, offset, usb_conv_info);
break;
case USB_DT_CONFIG:
case USB_DT_OTHER_SPEED_CONFIG:
offset = dissect_usb_configuration_descriptor(pinfo, tree, tvb, offset, usb_conv_info);
break;
case USB_DT_STRING: