aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cfm.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update FSF address - part II.darkjames1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43538 f5534014-38df-0310-8fa8-9805f1628bb7
2012-01-19Fix some duplicate display filter names.cmaynard1-11/+11
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40586 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier1-1/+1
Also: remove trailing whitespace for a number of files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39503 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-20Use ENC_NA as proto_tree_add_item() encoding arg for FT_ETHER hf[] field type.wmeier1-11/+11
(Some minor whitespace cleanup). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39488 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵wmeier1-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). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39426 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵wmeier1-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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39260 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-26Get rid of check_col, while at it set ENC.etxrab1-215/+213
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39147 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-24From Peter Nahas:jake1-1/+114
This patch adds support for the two-way Sythetic Loss Measurement opcodes (SLM & SLR) defined in the latest ITU-T Y.1731. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37781 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-23Fix for bug 5517:jake1-1/+2
MEG ID, ICC-based format is text, not binary. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35252 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy1-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.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7
2010-10-02Minor cleanup:wmeier1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34334 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-06#include <string.h> not needed.wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32410 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-03Remove unneeded #include <stdio.h>wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32367 f5534014-38df-0310-8fa8-9805f1628bb7
2010-03-15Declare sip_uri_offset_init() as returning void and remove a couple unused ↵morriss1-1/+98
variables git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32195 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_clear with col_checkkrj1-3/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29346 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkkrj1-3/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29345 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-18Fix various typos and spelling errors (mostly in text strings)wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27050 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-25prefs.h not req'd; cleanup reg_handoff; wmeier1-8/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26077 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-28From Brian W. Antoine:jake1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23649 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-21Bug 1994: From Keith Mercer :sake1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23534 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-06From Keith Mercer:etxrab1-206/+948
CFM dissector bugfixes and code update for ITU inclusion git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23380 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-13From Keith Mercer :jake1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23170 f5534014-38df-0310-8fa8-9805f1628bb7