aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cfm.c
AgeCommit message (Collapse)AuthorFilesLines
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-09-03From Andreas Urke via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9091 :Pascal Quantin1-43/+86
Add support for CFM R-APS/G.8032 version 2 From me: convert a few value_string to true_false_string svn path=/trunk/; revision=51744
2013-08-05Keep result of [new_]register_dissector in some dissectors. [2 of x]Jakub Zawadzki1-3/+3
(don't create new dissector handle if we can use already existing one) svn path=/trunk/; revision=51159
2013-07-03Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-13/+10
svn path=/trunk/; revision=50352
2013-03-15[-Wmissing-prototypes]Anders Broman1-0/+3
Use explicit casts. svn path=/trunk/; revision=48334
2012-11-07Get rid of a non ASCII char.Anders Broman1-1/+1
svn path=/trunk/; revision=45960
2012-11-07From Wim Leflere:Anders Broman1-17/+114
Updated the APS dissection and improved the dissection information. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7962 svn path=/trunk/; revision=45959
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-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-01-19Fix some duplicate display filter names.Chris Maynard1-11/+11
svn path=/trunk/; revision=40586
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-20Use ENC_NA as proto_tree_add_item() encoding arg for FT_ETHER hf[] field type.Bill Meier1-11/+11
(Some minor whitespace cleanup). svn path=/trunk/; revision=39488
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-2/+2
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39426
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-87/+87
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-09-26Get rid of check_col, while at it set ENC.Anders Broman1-215/+213
svn path=/trunk/; revision=39147
2011-06-24From Peter Nahas:Jaap Keuter1-1/+114
This patch adds support for the two-way Sythetic Loss Measurement opcodes (SLM & SLR) defined in the latest ITU-T Y.1731. svn path=/trunk/; revision=37781
2010-12-23Fix for bug 5517:Jaap Keuter1-1/+2
MEG ID, ICC-based format is text, not binary. svn path=/trunk/; revision=35252
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
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
2010-10-02Minor cleanup:Bill Meier1-694/+724
- packet-cfm.h not used elsewhere: incorporate into packet-cfm.c; - Move proto_register and proto_reg_handoff to the end of the file; - Localize some variables; - Remove some unneeded initializers; - Cleanu some whitesace. svn path=/trunk/; revision=34334
2010-04-06#include <string.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32410
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2010-03-14From Robert Dickerson:Jaap Keuter1-1/+98
Adding the R-APS (Ring-Automatic Protection Switching), G.8032, to the built-in CFM dissector. svn path=/trunk/; revision=32182
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=29346
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=29345
2008-12-18Fix various typos and spelling errors (mostly in text strings)Bill Meier1-1/+1
svn path=/trunk/; revision=27050
2008-08-25prefs.h not req'd; cleanup reg_handoff; Bill Meier1-8/+3
svn path=/trunk/; revision=26077
2007-11-28From Brian W. Antoine:Jaap Keuter1-2/+2
The Packet decoder for CFM has a couple of small bugs. 1) The frame rate for CCM's is wrong for rate=4, it's shown as 1ms and it should be shown as 1s. 2) The flags display for a LTM packet has the wrong title for bit 7. It should be UseFDBonly, not RDI. svn path=/trunk/; revision=23649
2007-11-21Bug 1994: From Keith Mercer :Sake Blok1-17/+26
This bugfix is focused only in the Sender ID TLV segment of code. This was to address the possibility that the Sender ID TLV may not have a Management Address Domain, and/or a Management Address. This bug was discovered when testing the dissector using CFM-enabled Netopia modems. svn path=/trunk/; revision=23534
2007-11-06From Keith Mercer:Anders Broman1-206/+948
CFM dissector bugfixes and code update for ITU inclusion svn path=/trunk/; revision=23380
2007-10-13From Keith Mercer :Jaap Keuter1-0/+1053
I would like to submit the dissector that will add support for dissecting CFM packets with the ethertype 0x8902 defined by the IEEE proposal for 802.1ag Draft 8.1. This code has been tested using the CFM feature implemented on a pre-GA build of the Spirent TestCenter, and the Alcatel-Lucent 7330 ISAM product. Code has been reviewed and tested by the design team at Alcatel-Lucent in the Access Network Department (AND). I have also added some elements for the ITU proposal Y.1731, where it will recognize all additional opcodes for that proposal, and it will fully dissect the AIS PDU. Fuzztest has been performed and has passed. svn path=/trunk/; revision=23170