aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-usb-hid.c
AgeCommit message (Collapse)AuthorFilesLines
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2009-10-31Register dissectors in proto_reg_handoff (not proto_register) in the ↵Bill Meier1-5/+6
standard manner; Use col_add_fstr instead of col_clear/col_append-fstr. svn path=/trunk/; revision=30782
2009-10-29From Marton Nemeth via bug 4173:Stig Bjørlykke1-0/+291
Parse USB HID class-specific requests. svn path=/trunk/; revision=30762
2009-08-03Handle usb_hid_item_usage_vals as range_string.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=29269
2009-08-02Remove unneeded #include <epan/emem.h>; fix some indentation.Bill Meier1-5/+4
svn path=/trunk/; revision=29261
2009-07-31From Adam Nielsen via bug 3659:Gerald Combs1-0/+769
Here is a patch against SVN that implements preliminary support for USB HID devices. At the moment it only dissects the initial set up packets (which you will see if you hotplug a keyboard or mouse.) The patch also fixes a minor bug in the USB dissector code which reported certain packets as malformed due to miscounting bytes, and it reports control packet data and padding data in a more user-friendly manner. svn path=/trunk/; revision=29256