aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-waveagent.c
AgeCommit message (Collapse)AuthorFilesLines
2014-03-15(Trivial): add editor modelines. use consistent indentation & do whirespace ↵Bill Meier1-89/+103
re-formatting. Change-Id: Ic8378bf398bcabfe1f50f7f6ccbe10e2e84884d5 Reviewed-on: https://code.wireshark.org/review/682 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.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=53911
2013-11-09Don't include <epan/strutil.h> when not needed.Jakub Zawadzki1-1/+0
svn path=/trunk/; revision=53194
2013-11-09Replace STRINGIFY with glib version.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=53193
2013-09-30Convert proto_tree_add_int_format calls to proto_tree_add_int_format_value ↵Michael Mann1-2/+2
where appropriate. svn path=/trunk/; revision=52301
2013-09-20Try to make heuristic slightly faster.Anders Broman1-5/+10
svn path=/trunk/; revision=52153
2013-09-14emem -> wmemJörg Mayer1-8/+8
svn path=/trunk/; revision=52039
2013-01-31Use '#if 0 ... #endif' rather than /** ... **/ to comment outBill Meier1-6/+6
unused hf[] entries (which I should have done in the first place). svn path=/trunk/; revision=47390
2013-01-26Comment out cases of unused hf array entries found by checkhf.Bill Meier1-3/+9
svn path=/trunk/; revision=47302
2012-10-13Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7857 :Pascal Quantin1-1/+1
Fix an infinite loop in WaveAgent dissector svn path=/trunk/; revision=45523
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-07-24General cleanup, including:Bill Meier1-272/+238
- prevent potential array overflow: do some bounds checking; - use emem_strbuf instead of buffers on the stack; - check_col() not required; - simplify code in several places; - remove some boilerplate comments; - ... svn path=/trunk/; revision=43970
2012-04-25Remove some unnecessary includes and fix some indentation.Martin Mathieson1-18/+14
svn path=/trunk/; revision=42227
2012-04-20Patch for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5048Martin Mathieson1-0/+1943
From Tom Cook and Tom Alexander. 1. A VWR encapsulation that reads VeriWave capture files (*.vwr) generated from WaveTest test hardware 2. Dissectors that display the VeriWave tap headers (both 802.11 and Ethernet) 3. A dissector for the WaveAgent protocol. The WaveAgent dissector is heuristic and parses the WaveAgent packet (a UDP payload). The WaveAgent dissector has been Fuzz tested. The VWR ENCAP and dissectors have been used extensively by VeriWave customers in a special version of WireSark compiled by VeriWave. svn path=/trunk/; revision=42155