aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mpls-y1711.c
AgeCommit message (Collapse)AuthorFilesLines
2013-01-31Use '#if 0 ... #endif' rather than /** ... **/ to comment outBill Meier1-2/+2
unused hf[] entries (which I should have done in the first place). svn path=/trunk/; revision=47391
2013-01-26Fix various instances of unused hf[] entries foundBill Meier1-1/+3
by checkhf. svn path=/trunk/; revision=47312
2012-09-28Cleanup:Bill Meier1-10/+12
packet-mpls.c: - refactor dissect_pw_ach(); - create/uer value_string_ext as appropriate; - use call_dissector() rather than direct dissector call in one cse; all: - use 'LABEL' prefix for a set of rather generic enum identifiers; - fix some cases of calling expert...() or sub-dissectors under 'if(tree)'; - reformat some hf[] entries; - do some whitespace changes. svn path=/trunk/; revision=45195
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-15Updated MPLS dissectors display filters per checkfiltername.plMichael Mann1-7/+7
Tried to provide consistency with MPLS dissector filter names svn path=/trunk/; revision=44521
2012-07-29Minor cleanup....Bill Meier1-13/+12
svn path=/trunk/; revision=44116
2012-07-29Don't do 'return 0' in mpls-y1722 dissector (so mpls dissector won't try to ↵Bill Meier1-22/+19
continue dissecting). See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6787 Comments 14, 16, 17 svn path=/trunk/; revision=44114
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-05-15Remove unneeded #includes (stdlib, stdio, ctypes, time);Bill Meier1-1/+1
In a few cases: do some whitespace, indentation cleanup & reformatting. svn path=/trunk/; revision=42632
2012-03-21'tab-width/tabstop/tabSize' in editor modelines should really always be 8;Bill Meier1-11/+12
Also: In some cases do some whitespace cleanup and some minor reformatting. svn path=/trunk/; revision=41724
2012-03-21Fix Coverity CID 1449: DEADCODE.Chris Maynard1-3/+0
svn path=/trunk/; revision=41705
2012-03-11From Francesco Fondelli via ↵Alexis La Goutte1-0/+443
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6787 Move Y.1711 out of MPLS dissector ITU-T Y.1711 code was "embedded" into the MPLS dissector in 2006. This patch moves it into its own dissector. From me : Fix a Clang warning svn path=/trunk/; revision=41486