aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sync.c
AgeCommit message (Collapse)AuthorFilesLines
2014-09-09Eliminate proto_tree_add_text from some of the dissectors.Michael Mann1-6/+17
Other minor cleanups while in the area. Change-Id: I99096ade9c69a4c148962d45bb6b0bd775040ba1 Reviewed-on: https://code.wireshark.org/review/4020 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-08-08Add a tvbuff version of crc6_compute().Guy Harris1-2/+2
Use it in the MBMS synchronisation protocol dissector, rather than calling tvb_get_ptr() there. Change-Id: I7ddb3c6b30547826cb5372352c7c483d8a24dc8e Reviewed-on: https://code.wireshark.org/review/3514 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2014-06-20Rename dissector_add_handle() to dissector_add_for_decode_as().Guy Harris1-1/+1
Hopefully that name makes it clear what the routiner's purpose is, and will encourage people to use it rather than using dissector_add_uint() with a bogus integer value. Change-Id: Ic5be456d0ad40b176aab01712ab7b13aed5de2a8 Reviewed-on: https://code.wireshark.org/review/2483 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2014-06-19Revert "Fixup: tvb_* -> tvb_captured"Michael Mann1-4/+4
https://www.wireshark.org/lists/wireshark-dev/201406/msg00131.html This reverts commit 246fe2ca4c67d8c98caa84e2f57694f6322e2f96. Change-Id: Ib24bae0198c13a84bd7f731bf4af921212109a8f Reviewed-on: https://code.wireshark.org/review/2430 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-06-18Fixup: tvb_* -> tvb_capturedDario Lombardo1-4/+4
Change-Id: I9209c1271967405c34c1b6fa43e1726a4d3a5a3f Reviewed-on: https://code.wireshark.org/review/2377 Reviewed-by: Anders Broman <a.broman58@gmail.com>
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-10- Forward declaration of register functions.Anders Broman1-0/+3
svn path=/trunk/; revision=53918
2013-08-05Keep result of [new_]register_dissector in some dissectors. [2 of x]Jakub Zawadzki1-2/+1
(don't create new dissector handle if we can use already existing one) svn path=/trunk/; revision=51159
2013-06-19From Anders:Jeff Morriss1-4/+7
Check Header CRC of SYNC protocol. svn path=/trunk/; revision=50062
2013-06-18From Anders:Jeff Morriss1-5/+8
Use integers intead of strings for hf_sync_timestamp And hf_sync_packet_nr. Ad ref. to specification. svn path=/trunk/; revision=50000
2013-02-19How can I get a new tvbuff that starts at an offset within a givenGuy Harris1-1/+1
tvbuff and runs to the end of the tvbuff? Let me count the ways.... Replace a bunch of different ways of doing that (some incorrect, in that they're not properly handling tvbuffs where the captured and reported lengths are different) with tvb_new_subset_remaining(). svn path=/trunk/; revision=47751
2012-11-06Corrected a printf formatStig Bjørlykke1-1/+1
svn path=/trunk/; revision=45945
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-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-05-21Additional cleanup:Bill Meier1-20/+19
- use #if 0/#endif to comment out code(instead of /* ...*/ - remove unused #define - replace col_clear()/col_add() by col_set() svn path=/trunk/; revision=42745
2012-05-21From Evan Huus: Unused Prefs registration;Bill Meier1-11/+6
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7273 From me: whitespace cleanup; svn path=/trunk/; revision=42744
2012-05-21Use new_register_dissector.Anders Broman1-1/+1
svn path=/trunk/; revision=42737
2012-05-21From David Wei:Anders Broman1-0/+315
New dissector for MBMS synchronisation protocol. svn path=/trunk/; revision=42735