From Steve Magnani:

USB: Endpoint bmAttributes not decoded correctly.

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6814

svn path=/trunk/; revision=40939
This commit is contained in:
Anders Broman 2012-02-08 20:21:44 +00:00
parent b8bbfcf379
commit 5da72b4d78
1 changed files with 6 additions and 6 deletions

View File

@ -442,17 +442,17 @@ static const value_string usb_bmAttributes_transfer_vals[] = {
static const value_string usb_bmAttributes_sync_vals[] = {
{0x00, "No Sync"},
{0x04, "Asynchronous"},
{0x08, "Adaptive"},
{0x0c, "Synchronous"},
{0x01, "Asynchronous"},
{0x02, "Adaptive"},
{0x03, "Synchronous"},
{0,NULL}
};
static const value_string usb_bmAttributes_behaviour_vals[] = {
{0x00, "Data-Endpoint"},
{0x10, "Explicit Feedback-Endpoint"},
{0x20, "Implicit Feedback-Data-Endpoint"},
{0x30, "Reserved"},
{0x01, "Explicit Feedback-Endpoint"},
{0x02, "Implicit Feedback-Data-Endpoint"},
{0x03, "Reserved"},
{0,NULL}
};