ISO14443: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
[metze/wireshark/wip.git] / epan / nlpid.h
1 /* nlpid.h
2  * Definitions of OSI NLPIDs (Network Layer Protocol IDs)
3  * Laurent Deniel <laurent.deniel@free.fr>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 #ifndef __NLPID_H__
25 #define __NLPID_H__
26
27 #include <epan/value_string.h>
28
29 /* X.263 / ISO/IEC TR 9577 NLPID values. */
30
31 #define NLPID_NULL              0x00
32 #define NLPID_IPI_T_70          0x01    /* T.70, when an IPI */
33 #define NLPID_SPI_X_29          0x01    /* X.29, when an SPI */
34 #define NLPID_X_633             0x03    /* X.633 */
35 #define NLPID_DMS               0x03    /* Maintenace messages: AT&T TR41459, Nortel NIS A211-1, Telcordia SR-4994, ... */
36 #define NLPID_Q_931             0x08    /* Q.931, Q.932, X.36, ISO 11572, ISO 11582 */
37 #define NLPID_Q_933             0x08    /* Q.933, on Frame Relay */
38 #define NLPID_Q_2931            0x09    /* Q.2931 */
39 #define NLPID_Q_2119            0x0c    /* Q.2119 */
40 #define NLPID_SNAP              0x80
41 #define NLPID_ISO8473_CLNP      0x81    /* X.233 */
42 #define NLPID_ISO9542_ESIS      0x82
43 #define NLPID_ISO10589_ISIS     0x83
44 #define NLPID_ISO10747_IDRP     0x85
45 #define NLPID_ISO9542X25_ESIS   0x8a
46 #define NLPID_ISO10030          0x8c
47 #define NLPID_ISO11577          0x8d    /* X.273 */
48 #define NLPID_IP6               0x8e
49 #define NLPID_COMPRESSED        0xb0    /* "Data compression protocol" */
50 #define NLPID_TRILL             0xc0
51 #define NLPID_SNDCF             0xc1    /* "SubNetwork Dependent Convergence Function */
52 #define NLPID_IEEE_8021AQ       0xc1    /* IEEE 802.1aq (draft-ietf-isis-ieee-aq-05.txt); defined in context of ISIS "supported protocols" TLV */
53 #define NLPID_IP                0xcc
54 #define NLPID_PPP               0xcf
55
56 extern const value_string nlpid_vals[];
57
58 /*
59  * 0x09 is, in Frame Relay, LMI, Q.2931.
60  */
61 #define NLPID_LMI               0x09    /* LMI */
62
63 #endif