We always HAVE_CONFIG_H so don't bother checking whether we have it or not.
[metze/wireshark/wip.git] / epan / afn.c
1 /* afn.c
2  * RFC 1700 address family numbers
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #include "config.h"
26
27 #include <epan/packet.h>
28 #include <epan/afn.h>
29
30 const value_string afn_vals[] = {
31     { AFNUM_RESERVED, "Reserved" },
32     { AFNUM_INET, "IPv4" },
33     { AFNUM_INET6, "IPv6" },
34     { AFNUM_NSAP, "NSAP" },
35     { AFNUM_HDLC, "HDLC (8-bit multidrop)" },
36     { AFNUM_BBN1822, "BBN 1822" },
37     { AFNUM_802, "802 (includes all 802 media plus Ethernet)" },
38     { AFNUM_E163, "E.163" },
39     { AFNUM_E164, "E.164 (SMDS, Frame Relay, ATM)" },
40     { AFNUM_F69, "F.69 (Telex)" },
41     { AFNUM_X121, "X.121 (X.25, Frame Relay)" },
42     { AFNUM_IPX, "IPX" },
43     { AFNUM_ATALK, "Appletalk" },
44     { AFNUM_DECNET, "Decnet IV" },
45     { AFNUM_BANYAN, "Banyan Vines" },
46     { AFNUM_E164NSAP, "E.164 with NSAP subaddress" },
47     { AFNUM_DNS, "DNS (Domain Name System)" },
48     { AFNUM_DISTNAME, "Distinguished Name" },
49     { AFNUM_AS_NUMBER, "AS Number" },
50     { AFNUM_XTP_IP4, "XTP over IP version 4" },
51     { AFNUM_XTP_IP6, "XTP over IP version 6" },
52     { AFNUM_XTP, "XTP native mode XTP" },
53     { AFNUM_FC_WWPN, "Fibre Channel World-Wide Port Name" },
54     { AFNUM_FC_WWNN, "Fibre Channel World-Wide Node Name" },
55     { AFNUM_GWID, "GWID" },
56     { AFNUM_L2VPN, "Layer-2 VPN" },
57     { AFNUM_L2VPN_OLD, "Layer-2 VPN (old)" },
58     { AFNUM_EIGRP_COMMON, "EIGRP Common Service Family" },
59     { AFNUM_EIGRP_IPV4, "EIGRP IPv4 Service Family" },
60     { AFNUM_EIGRP_IPV6, "EIGRP IPv6 Service Family" },
61     { AFNUM_LCAF, "LISP Canonical Address Format (LCAF)" },
62     { 65535, "Reserved" },
63     { 0, NULL },
64 };