2 * RFC 1700 address family numbers
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 #endif /* __cplusplus */
33 * Address family numbers, from
35 * http://www.iana.org/assignments/address-family-numbers
37 #define AFNUM_RESERVED 0 /* Reserved */
38 #define AFNUM_INET 1 /* IP (IP version 4) */
39 #define AFNUM_INET6 2 /* IP6 (IP version 6) */
40 #define AFNUM_NSAP 3 /* NSAP */
41 #define AFNUM_HDLC 4 /* HDLC (8-bit multidrop) */
42 #define AFNUM_BBN1822 5 /* BBN 1822 */
43 #define AFNUM_802 6 /* 802 (includes all 802 media plus Ethernet "canonical format") */
44 #define AFNUM_E163 7 /* E.163 */
45 #define AFNUM_E164 8 /* E.164 (SMDS, Frame Relay, ATM) */
46 #define AFNUM_F69 9 /* F.69 (Telex) */
47 #define AFNUM_X121 10 /* X.121 (X.25, Frame Relay) */
48 #define AFNUM_IPX 11 /* IPX */
49 #define AFNUM_ATALK 12 /* Appletalk */
50 #define AFNUM_DECNET 13 /* Decnet IV */
51 #define AFNUM_BANYAN 14 /* Banyan Vines */
52 #define AFNUM_E164NSAP 15 /* E.164 with NSAP format subaddress */
53 #define AFNUM_DNS 16 /* DNS (Domain Name System) */
54 #define AFNUM_DISTNAME 17 /* Distinguished Name */
55 #define AFNUM_AS_NUMBER 18 /* AS Number */
56 #define AFNUM_XTP_IP4 19 /* XTP over IP version 4 */
57 #define AFNUM_XTP_IP6 20 /* XTP over IP version 6 */
58 #define AFNUM_XTP 21 /* XTP native mode XTP */
59 #define AFNUM_FC_WWPN 22 /* Fibre Channel World-Wide Port Name */
60 #define AFNUM_FC_WWNN 23 /* Fibre Channel World-Wide Node Name */
61 #define AFNUM_GWID 24 /* GWID */
62 /* draft-kompella-ppvpn-l2vpn */
63 #define AFNUM_L2VPN 25
64 #define AFNUM_L2VPN_OLD 196
65 #define AFNUM_EIGRP_COMMON 16384 /* EIGRP Common Service Family */
66 #define AFNUM_EIGRP_IPV4 16385 /* EIGRP IPv4 Service Family */
67 #define AFNUM_EIGRP_IPV6 16386 /* EIGRP IPv6 Service Family */
68 extern const value_string afn_vals[];
72 #endif /* __cplusplus */
74 #endif /* __AFN_H__ */