aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-jmirror.c
AgeCommit message (Collapse)AuthorFilesLines
2013-12-14Fix warningsJakub Zawadzki1-3/+3
svn path=/trunk/; revision=54089
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-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-17From Wayne Brassem via ↵Pascal Quantin1-2/+8
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7485 : Add support for IPv6 over PPP in Jmirror dissector svn path=/trunk/; revision=43759
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-2/+2
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39288
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2009-10-31Verify bytes exist before doing heuristics check;Bill Meier1-6/+6
Registering the dissector publicly doesn't seem to be needed; Fix a typo in a comment and also some indentation. svn path=/trunk/; revision=30784
2009-10-31Remove incorrect comment which refered to a non existant header fileKovarththanan Rajaratnam1-8/+7
svn path=/trunk/; revision=30781
2009-10-31Populate protocol column before digging into the buffer (we might throw an ↵Kovarththanan Rajaratnam1-3/+3
exception while doing that) svn path=/trunk/; revision=30780
2009-10-31Make jmirror handle staticKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=30779
2009-10-31From Wayne Brassem:Jaap Keuter1-0/+225
I have built and tested a new Wireshark dissector which decodes a mirrored packet that has an additional prepended UDP header attached to it. The packet format was designed by Juniper Networks. svn path=/trunk/; revision=30777