aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb_pf.h
Commit message (Collapse)AuthorAgeFilesLines
* - Improvements to USB PF solutionHans Petter Selasky2011-04-031-11/+33
| | | | | | | | | | | | | | | | | - Add more fields for USB device and host mode - Add more information to USB PF header so that decoding can easily be done by software analyzer tools like Wireshark. - Optimise usbdump to display USB streams in text format more efficiently. - Software using USB PF must be recompiled after this commit, due to structure changes. MFC after: 7 days Approved by: thompsa (mentor) Notes: svn path=/head/; revision=220301
* Use correct kernel types for all fields in USB PF code and headers.Hans Petter Selasky2011-02-011-12/+12
| | | | | | | Approved by: thompsa (mentor) Notes: svn path=/head/; revision=218165
* Removes all duplicated code with BPF that it's greatly simplified andWeongyo Jeong2010-11-241-223/+2
| | | | | | | | | | take all benefits whenever BPF code is improved. Pointed by: jkim Reviewed by: thompsa Notes: svn path=/head/; revision=215802
* Adds a USB packet filter feature to the stack that it could captureWeongyo Jeong2010-11-221-0/+319
packets which go through each USB host controllers. Its implementations are almost based on BPF code and very similar with it except it's little bit customized for USB packet only. The userland program usbdump(8) would be committed soon. Discussed with: hps, thompsa, yongari Notes: svn path=/head/; revision=215649