aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lisp.c
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
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-08-22Put the state of flags in the hop_flags field into the summary line.Guy Harris1-5/+12
Note in the introductory comment what "LISP" refers to, for the benefit of those of us who grew up thinking it stood for "LISt Processing". svn path=/trunk/; revision=44617
2012-08-22Try to make Ubuntu buildbot happyPascal Quantin1-3/+3
svn path=/trunk/; revision=44615
2012-08-22From Loránd Jakab via ↵Pascal Quantin1-181/+916
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7654: Add features to the Locator/ID Separation Protocol (LISP) dissector svn path=/trunk/; revision=44613
2012-08-14fix subtle g_strdup_printf() memory leaks with ephemeral memoryMichael Mann1-2/+2
svn path=/trunk/; revision=44491
2012-03-21'tab-width/tabstop/tabSize' in editor modelines should really always be 8;Bill Meier1-3/+3
Also: In some cases do some whitespace cleanup and some minor reformatting. svn path=/trunk/; revision=41724
2012-03-06Use tvb_new_subset_remaining() rather than tvb_new_subset();Bill Meier1-54/+55
#include <styring.h> not req'd (in a few cases); Minor reformating & whitespace cleanup. svn path=/trunk/; revision=41374
2012-01-20Fix some duplicate display filter names.Chris Maynard1-1/+1
svn path=/trunk/; revision=40614
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-10 Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-10/+10
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_BOOLEAN FT_IPv4 FT_EUI64 FT_GUID FT_UINT_STRING Also: For type FT_ITv6 use ENC_NA. (This was missed in SVN #39260) svn path=/trunk/; revision=39328
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-22/+22
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
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-2/+2
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
2011-04-28Remove an XXX comment;Bill Meier1-2/+0
svn path=/trunk/; revision=36941
2011-04-28External subdissectors should be called regardless of 'if(tree)'.Bill Meier1-23/+28
svn path=/trunk/; revision=36940
2011-04-25From Loránd Jakab via ↵Jeff Morriss1-0/+1046
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5854 : The Locator/ID Separation Protocol [1] is being standardized within the IETF, and it is nearing RFC status (pending security review). I have been maintaining a dissector patch for about a year, see [2]. Feedback received indicates that, among others, it is widely used by the developers of a large router vendor, without issues. In January I submitted the dissector for data plane packets as bug #5602, which was committed as r35615. The patch attached to this bug adds support for dissection of control plane packets. [1] http://tools.ietf.org/html/draft-ietf-lisp [2] http://lisp.ccaba.upc.edu/wireshark/ svn path=/trunk/; revision=36845