Wireshark
2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
epan
afn.h
1
/* afn.h
2
* RFC 1700 address family numbers
3
*
4
* Wireshark - Network traffic analyzer
5
* By Gerald Combs <gerald@wireshark.org>
6
* Copyright 1998 Gerald Combs
7
*
8
* SPDX-License-Identifier: GPL-2.0-or-later
9
*/
10
11
#ifndef __AFN_H__
12
#define __AFN_H__
13
14
#ifdef __cplusplus
15
extern
"C"
{
16
#endif
/* __cplusplus */
17
18
/*
19
* Address family numbers, from
20
*
21
* http://www.iana.org/assignments/address-family-numbers
22
*/
23
#define AFNUM_RESERVED 0
/* Reserved */
24
#define AFNUM_INET 1
/* IP (IP version 4) */
25
#define AFNUM_INET6 2
/* IP6 (IP version 6) */
26
#define AFNUM_NSAP 3
/* NSAP */
27
#define AFNUM_HDLC 4
/* HDLC (8-bit multidrop) */
28
#define AFNUM_BBN1822 5
/* BBN 1822 */
29
#define AFNUM_802 6
/* 802 (includes all 802 media plus Ethernet "canonical format") */
30
#define AFNUM_E163 7
/* E.163 */
31
#define AFNUM_E164 8
/* E.164 (SMDS, Frame Relay, ATM) */
32
#define AFNUM_F69 9
/* F.69 (Telex) */
33
#define AFNUM_X121 10
/* X.121 (X.25, Frame Relay) */
34
#define AFNUM_IPX 11
/* IPX */
35
#define AFNUM_ATALK 12
/* Appletalk */
36
#define AFNUM_DECNET 13
/* Decnet IV */
37
#define AFNUM_BANYAN 14
/* Banyan Vines */
38
#define AFNUM_E164NSAP 15
/* E.164 with NSAP format subaddress */
39
#define AFNUM_DNS 16
/* DNS (Domain Name System) */
40
#define AFNUM_DISTNAME 17
/* Distinguished Name */
41
#define AFNUM_AS_NUMBER 18
/* AS Number */
42
#define AFNUM_XTP_IP4 19
/* XTP over IP version 4 */
43
#define AFNUM_XTP_IP6 20
/* XTP over IP version 6 */
44
#define AFNUM_XTP 21
/* XTP native mode XTP */
45
#define AFNUM_FC_WWPN 22
/* Fibre Channel World-Wide Port Name */
46
#define AFNUM_FC_WWNN 23
/* Fibre Channel World-Wide Node Name */
47
#define AFNUM_GWID 24
/* GWID */
48
#define AFNUM_L2VPN 25
/* RFC4761 RFC6074 */
49
#define AFNUM_L2VPN_OLD 196
50
#define AFNUM_MPLS_TP_SEI 26
/* MPLS-TP Section Endpoint Identifier, RFC7212 */
51
#define AFNUM_MPLS_TP_LSPEI 27
/* MPLS-TP LSP Endpoint Identifier, RFC7212 */
52
#define AFNUM_MPLS_TP_PEI 28
/* MPLS-TP Pseudowire Endpoint Identifier, RFC7212 */
53
#define AFNUM_MT_IP 29
/* MT IP: Multi-Topology IP version 4, RFC7307 */
54
#define AFNUM_MT_IPV6 30
/* MT IPv6: Multi-Topology IP version 6, RFC7307 */
55
#define AFNUM_EIGRP_COMMON 16384
/* EIGRP Common Service Family, Donnie Savage */
56
#define AFNUM_EIGRP_IPV4 16385
/* EIGRP IPv4 Service Family, Donnie Savage */
57
#define AFNUM_EIGRP_IPV6 16386
/* EIGRP IPv6 Service Family, Donnie Savage */
58
#define AFNUM_LCAF 16387
/* LISP Canonical Address Format, David Meyer */
59
#define AFNUM_BGP_LS 16388
/* BGP-LS, RFC7752 */
60
#define AFNUM_EUI48 16389
/* 48-bit MAC, RFC7042 */
61
#define AFNUM_EUI64 16390
/* 64-bit MAC, RFC7042 */
62
#define AFNUM_OUI 16391
/* OUI, RFC7961 */
63
#define AFNUM_MAC_24 16392
/* MAC/24, RFC7961 */
64
#define AFNUM_MAC_40 16393
/* MAC/40, RFC7961 */
65
#define AFNUM_IPv6_64 16394
/* IPv6/64, RFC7961 */
66
#define AFNUM_RB_PID 16395
/* RBridge Port ID, RFC7961 */
67
#define AFNUM_TRILL_NICKNAME 16396
/* TRILL Nickname, RFC7455 */
68
extern
const
value_string
afn_vals[];
69
70
#ifdef __cplusplus
71
}
72
#endif
/* __cplusplus */
73
74
#endif
/* __AFN_H__ */
75
76
/*
77
* Editor modelines - http://www.wireshark.org/tools/modelines.html
78
*
79
* Local variables:
80
* c-basic-offset: 4
81
* tab-width: 8
82
* indent-tabs-mode: nil
83
* End:
84
*
85
* vi: set shiftwidth=4 tabstop=8 expandtab:
86
* :indentSize=4:tabSize=8:noTabs=true:
87
*/
_value_string
Definition:
value_string.h:24
Generated by
1.8.11