aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cipsafety.c
AgeCommit message (Collapse)AuthorFilesLines
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-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-3/+3
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-08-10Use val_to_str_const() where appropriate;Bill Meier1-2/+2
Also (for a few files): - create/use some extended value strings; - remove unneeded #include files; - remove unneeded variable initialization; - re-order fcns slightly so prefs_reg_handoff...() at end, etc svn path=/trunk/; revision=44438
2012-08-09 registered init routine action need be done just once in ↵Bill Meier1-8/+5
proto_reg_handoff...(); localize handle to proto_reg_handoff(); svn path=/trunk/; revision=44373
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-06-12Fix: code under 'if(tree)' (in)directly calls ↵Bill Meier1-21/+15
sub-dissector/col_...()/expert...() fcns svn path=/trunk/; revision=43226
2012-05-05Fix some more hf encodings.Jeff Morriss1-7/+7
svn path=/trunk/; revision=42434
2012-04-09Mark some function static.Jakub Zawadzki1-29/+29
svn path=/trunk/; revision=41999
2012-03-06Reformat long lines...Bill Meier1-397/+1088
svn path=/trunk/; revision=41384
2012-03-06Fix incorrect packet-details display of certain 1 bit FT_BOOLEAN fields.Bill Meier1-44/+44
Also: reformat a few lines. svn path=/trunk/; revision=41383
2012-03-06Don't use FT_BOOLEAN with value_strings: the code to generateJeff Morriss1-6/+4
representations of former is expecting true_false_strings--which are quite different than the latter. svn path=/trunk/; revision=41363
2012-03-06Don't use FT_*INT with true_false strings: the code to generateJeff Morriss1-3/+3
representations of former is expecting value_strings--which are quite different than the latter. svn path=/trunk/; revision=41361
2012-03-02Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+1
svn path=/trunk/; revision=41304
2012-03-02From Michael Mann via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6893 :Jeff Morriss1-60/+46
The attached patches fix the following issues: 1. CIP-Motion shouldn't be a heuristic dissector. CIP-Motion packets are determined by specific fields in a CIP ForwardOpen. I ran into situations where CIP-Motion's "vague" heuristics incorrectly dissected packets meant for CIP-Safety. Of course this requires the ForwardOpen to be in the trace, but it is the most deterministic way to have CIP-Motion packets. 2. Minor bugfix to the CIP-Safety dissector. A couple of fields were "missing", causing errant malformed packets. svn path=/trunk/; revision=41283
2012-02-27From Michael Mann:Anders Broman1-0/+1912
a dissector for the ODVA protocol: CIP Safety. More information about the protocol can be found here: http://www.odva.org/Home/ODVATECHNOLOGIES/CIP/CIPTechnologyOverview/CIPSafety/CIPSafetyOverview/tabid/131/lng/en-US/Default.aspx https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6862 svn path=/trunk/; revision=41201