Removed some more "statement not reached" warnings.
[obnox/wireshark/wip.git] / epan / dissectors / packet-cfm.h
1 /* packet-cfm.h
2  * Value declarations for CFM EOAM (IEEE 802.1ag) dissection
3  * Copyright 2007, Keith Mercer <keith.mercer@alcatel-lucent.com>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24  */
25
26 #ifndef __PACKET_CFM_H__
27 #define __PACKET_CFM_H__
28
29 #define IEE8021 0x00
30 #define CCM 0x01
31 #define LBR 0x02
32 #define LBM 0x03
33 #define LTR 0x04
34 #define LTM 0X05
35
36 #define AIS 0x21
37 #define LCK 0x23
38 #define TST 0x25
39 #define APS 0x27
40 #define MCC 0x29
41 #define LMM 0x2B
42 #define LMR 0x2A
43 #define ODM 0x2D
44 #define DMM 0x2F
45 #define DMR 0x2E
46 #define EXM 0x31
47 #define EXR 0x30
48 #define VSM 0x33
49 #define VSR 0x32
50
51 #define END_TLV         0x00
52 #define SENDER_ID_TLV   0x01
53 #define PORT_STAT_TLV   0x02
54 #define DATA_TLV        0x03
55 #define INTERF_STAT_TLV 0x04
56 #define REPLY_ING_TLV   0x05
57 #define REPLY_EGR_TLV   0x06
58 #define LTM_EGR_ID_TLV  0x07
59 #define LTR_EGR_ID_TLV  0x08
60 #define ORG_SPEC_TLV    0x1F
61 #define TEST_TLV        0x20
62
63 #endif