aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gmhdr.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
2010-10-11Fix an error in a comment I added last week.Jeff Morriss1-1/+1
svn path=/trunk/; revision=34480
2010-10-08Don't use a TRY/CATCH block just to ignore any exceptions thrown byJeff Morriss1-13/+11
tvb_get_ntohs(): check the remaining tvb length instead. svn path=/trunk/; revision=34435
2010-09-14From tieuthunhi:Anders Broman1-3/+6
Add new time source for Gigamon header. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5210 svn path=/trunk/; revision=34114
2010-07-09Check our field lengths. Should fix the recent randpkt errors.Gerald Combs1-0/+14
svn path=/trunk/; revision=33481
2010-06-23Strengthen test for Gigamon trailer;Bill Meier1-41/+41
Change some indentation/spacing. svn path=/trunk/; revision=33293
2010-06-22Ensure no exceptions thrown while checking for Gigamon trailer.Bill Meier1-14/+15
(Builds upon the previous commit by Anders). svn path=/trunk/; revision=33291
2010-06-22If the trailer is less than 4 bytes it's not a Gigamon hdr.Anders Broman1-0/+5
svn path=/trunk/; revision=33287
2010-06-21Corrected copyright header.Stig Bjørlykke1-2/+5
svn path=/trunk/; revision=33276
2010-06-21Added volatile to 'offset' (needed by my version of gcc).Martin Mathieson1-1/+1
svn path=/trunk/; revision=33275
2010-06-20Properly terminate gmhdr_ftype_timestamp[].Guy Harris1-1/+2
svn path=/trunk/; revision=33273
2010-06-20Mark pinfo as unused.Guy Harris1-1/+1
svn path=/trunk/; revision=33272
2010-06-20More rework of the code:Bill Meier1-138/+86
- Refactor to use a separate function for common code; - Prefs callback not required; - Use val_to_str(...); - Fix issues relating to incorrect bytes highlighted in the hex view; svn path=/trunk/; revision=33271
2010-06-19From tieuthunhi via bug 4887:Stig Bjørlykke1-0/+351
Add support for Gigamon headers (timestamp, source port, length, etc) that are inserted by Gigamon network equipments. From me: Various cleanup: - Register to "eth.trailer" heuristics for trailer. - Use standard dumping of timestamp. - Rewrote gmhdr_plfm_str handling. - Dump srcport details in a subtree. - Removed packte-gmhdr.h. - Ensure the while-loop will end. svn path=/trunk/; revision=33256