From Chris Maynard via bug 4722:

When I submitted the USB and PPP changes, I had not previously tested with a
full insertion of a particular USB device.  Now that I have, I've found that
what used to be reported as an unknown interface class is now reported as a
vendor specific interface class.  Thus, in order for PPP/USB dissection to
work, the ppp dissector must register for that class as well.  The attached
trivial patch does just that.

svn path=/trunk/; revision=32768
This commit is contained in:
Gerald Combs 2010-05-12 04:03:07 +00:00
parent 35efe5e36f
commit eb92458522
1 changed files with 1 additions and 0 deletions

View File

@ -4404,6 +4404,7 @@ proto_reg_handoff_ppp_raw_hdlc(void)
ppp_usb_handle = create_dissector_handle(dissect_ppp_usb, proto_ppp);
dissector_add("usb.bulk", IF_CLASS_UNKNOWN, ppp_usb_handle);
dissector_add("usb.bulk", IF_CLASS_VENDOR_SPECIFIC, ppp_usb_handle);
}
/*