aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-canopen.c
AgeCommit message (Collapse)AuthorFilesLines
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus1-1/+1
obvious that the returned string is ephemeral, and opens up the original names in the API for versions that take a wmem pool (and thus can work in any scope). svn path=/trunk/; revision=54249
2013-12-05CAN protocols have a CAN ID and up to 8 bytes of data. How the CAN ID and ↵Michael Mann1-57/+49
data are presented is the responsibility of the previous layer. Make the interface be passing the CAN ID in dissector data and have the (up to) 8 bytes be the tvb. CAN protocols should treat the CAN ID as "generated" data. svn path=/trunk/; revision=53792
2013-03-15[-Wmissing-prototypes]Anders Broman1-0/+2
Use explicit casts. svn path=/trunk/; revision=48313
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-05-07General cleanup:Bill Meier1-294/+271
- Setup COL_PROTO & COL_INFO before fetching from the tvb; - Improve byte pane highlighing: Use proper length in proto_tree_add_item() calls; - Remove unneeded include; - Use VALS macro when referencing a value_string in hf[]; - Simplify/rework code slightly; - Whitespace. svn path=/trunk/; revision=42464
2012-03-07From Yegor Yefremov: Add dissector for CANopen protocol ↵Anders Broman1-0/+485
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6651 with some modifications svn path=/trunk/; revision=41394