summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-clique-rm.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-20Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=54314
2013-10-15Try to optimize heuristics slightly.Anders Broman1-1/+4
svn path=/trunk/; revision=52624
2013-06-14Remove check_col() and the occasional tree.Michael Mann1-4/+2
svn path=/trunk/; revision=49920
2013-03-15[-Wmissing-prototypes]Anders Broman1-0/+3
Use explicit casts. svn path=/trunk/; revision=48313
2012-10-11Change 'for (i=1; i<=n;...' to 'for (i=0; i<n; ...)'Bill Meier1-4/+4
Done on general principles altho upon inspection none of the cases changed would have actually resulted in an infinite loop. svn path=/trunk/; revision=45478
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-17Cleanup:Bill Meier1-236/+234
- fix two cases of potential infinite loop while dissecting; [for (guint8 i; i <= guint8 end; i++)] - col_...() fcns should not be called under 'if (tree)' - remove unneeded initializers; - move proto_reg_handoff...() to the end of the file as per convention; - remove some boilerplate comments; - use consistent indentation and whitespace style; - remove some trailing whitespace. svn path=/trunk/; revision=44950
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-07-25Fix Coverity CID 709738: Unused pointer value.Chris Maynard1-2/+2
svn path=/trunk/; revision=44018
2012-07-18Eliminate some gsize's I missed in the previous checkin.Guy Harris1-4/+4
svn path=/trunk/; revision=43794
2012-07-18Nobody uses the return value of dissect_sender_array(), so don't have itGuy Harris1-8/+6
return anything. Don't use gsize for offsets in packets; the type used in Wireshark is int. svn path=/trunk/; revision=43793
2012-07-18Set svn:keywords and svn:eol-style, and fix the EOL style (I'm on UN*X,Guy Harris1-487/+487
so with svn:eol-style native, there should be no CRs). svn path=/trunk/; revision=43792
2012-07-18Adds CliqueRM protocol ↵Michael Mann1-0/+487
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2076) svn path=/trunk/; revision=43791