In Win32, treat both '/' and '\' as pathname separators.
[obnox/wireshark/wip.git] / nlpid.h
1 /* nlpid.h
2  * Definitions of OSI NLPIDs (Network Layer Protocol IDs)
3  * Laurent Deniel <deniel@worldnet.fr>
4  *
5  * $Id: nlpid.h,v 1.2 2000/01/13 05:41:21 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@zing.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * 
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 /* ISO/IEC TR 9577 NLPID values; gathered from various specifications
28    (not from TR 9577 itself - it's a 19-page document, for which the
29    American National Standards Institute wants to charge me USD 62.00). */
30
31 #define NLPID_NULL              0x00
32 #define NLPID_SNAP              0x80
33 #define NLPID_ISO8473_CLNP      0x81
34 #define NLPID_ISO9542_ESIS      0x82
35 #define NLPID_ISO10589_ISIS     0x83
36 #define NLPID_ISO9542X25_ESIS   0x8a
37 #define NLPID_IP                0xcc
38 #define NLPID_PPP               0xcf
39
40 extern const value_string nlpid_vals[];
41