aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wreth.c
AgeCommit message (Collapse)AuthorFilesLines
2013-04-16Change offset to be 8, based on an educated guess from looking at theEvan Huus1-1/+1
code around line 777. Fixes the last open issue in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7260 svn path=/trunk/; revision=48889
2013-02-22No need for static dissector_handle_t.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=47827
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-06-11Fix bugs and other issues:Bill Meier1-616/+633
- remove 'if (tree)' around code which (eventually) calls col_...() functions; - remove unneeded check_col() usage; - use extended value-strings where appropriate; - use col_set_str() instead of col_add_fstr(); - fix mismatch between proto_tree_add_item() size arg and the FT type in the referenced hf[] entry (in a few cases); - FT_STRING fields should have ENC_ASCII|ENC_NA as the 'encoding' arg in the corresponding proto_tree_add_item() call; - do whitespace cleanup. Note: 1 issue remains: See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7260#c12 svn path=/trunk/; revision=43217
2012-06-05packet-wreth: cleanupJakub Zawadzki1-22/+20
- make function and arrays static - comment out unused hf-entry. - comment out unused variable. svn path=/trunk/; revision=43111
2012-06-04 From Clement Marrast via ↵Alexis La Goutte1-0/+2002
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7260 New dissector for WSE Remote Ethernet protocol From me : * Fix Compilation under linux * Use proto_tree_add_item* * Make build-in dissector * Include Status.* and Codef.* in dissector * Reorder function (to respect Wireshark Codelines) * Add Modelines Info and fix indent (use 4 spaces) * Fix check* tools * Add Clement to AUTHORS With the dissector.... svn path=/trunk/; revision=43092