aboutsummaryrefslogtreecommitdiffstats
path: root/epan/afn.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2015-01-01 19:45:22 -0500
committerBill Meier <wmeier@newsguy.com>2015-01-02 00:49:09 +0000
commit454fd6e9eb3009cd346443ba06498904d6cea228 (patch)
treed7b5e3e699e0992a0d767b7017fbac44a0531069 /epan/afn.c
parent887cce4a5f4a03a74899d8f7388550aeaed7edc5 (diff)
Add "Editor modelines"; Adjust whitespace as needed.
Change-Id: Ic5a5acb0f36d3aa144edbfb1ae71097b18426db4 Reviewed-on: https://code.wireshark.org/review/6216 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/afn.c')
-rw-r--r--epan/afn.c81
1 files changed, 47 insertions, 34 deletions
diff --git a/epan/afn.c b/epan/afn.c
index 13049871c3..e1a70d17e1 100644
--- a/epan/afn.c
+++ b/epan/afn.c
@@ -26,40 +26,53 @@
#include <epan/afn.h>
const value_string afn_vals[] = {
- { AFNUM_RESERVED, "Reserved" },
- { AFNUM_INET, "IPv4" },
- { AFNUM_INET6, "IPv6" },
- { AFNUM_NSAP, "NSAP" },
- { AFNUM_HDLC, "HDLC (8-bit multidrop)" },
- { AFNUM_BBN1822, "BBN 1822" },
- { AFNUM_802, "802 (includes all 802 media plus Ethernet)" },
- { AFNUM_E163, "E.163" },
- { AFNUM_E164, "E.164 (SMDS, Frame Relay, ATM)" },
- { AFNUM_F69, "F.69 (Telex)" },
- { AFNUM_X121, "X.121 (X.25, Frame Relay)" },
- { AFNUM_IPX, "IPX" },
- { AFNUM_ATALK, "Appletalk" },
- { AFNUM_DECNET, "Decnet IV" },
- { AFNUM_BANYAN, "Banyan Vines" },
- { AFNUM_E164NSAP, "E.164 with NSAP subaddress" },
- { AFNUM_DNS, "DNS (Domain Name System)" },
- { AFNUM_DISTNAME, "Distinguished Name" },
- { AFNUM_AS_NUMBER, "AS Number" },
- { AFNUM_XTP_IP4, "XTP over IP version 4" },
- { AFNUM_XTP_IP6, "XTP over IP version 6" },
- { AFNUM_XTP, "XTP native mode XTP" },
- { AFNUM_FC_WWPN, "Fibre Channel World-Wide Port Name" },
- { AFNUM_FC_WWNN, "Fibre Channel World-Wide Node Name" },
- { AFNUM_GWID, "GWID" },
- { AFNUM_L2VPN, "Layer-2 VPN" },
- { AFNUM_L2VPN_OLD, "Layer-2 VPN (old)" },
+ { AFNUM_RESERVED, "Reserved" },
+ { AFNUM_INET, "IPv4" },
+ { AFNUM_INET6, "IPv6" },
+ { AFNUM_NSAP, "NSAP" },
+ { AFNUM_HDLC, "HDLC (8-bit multidrop)" },
+ { AFNUM_BBN1822, "BBN 1822" },
+ { AFNUM_802, "802 (includes all 802 media plus Ethernet)" },
+ { AFNUM_E163, "E.163" },
+ { AFNUM_E164, "E.164 (SMDS, Frame Relay, ATM)" },
+ { AFNUM_F69, "F.69 (Telex)" },
+ { AFNUM_X121, "X.121 (X.25, Frame Relay)" },
+ { AFNUM_IPX, "IPX" },
+ { AFNUM_ATALK, "Appletalk" },
+ { AFNUM_DECNET, "Decnet IV" },
+ { AFNUM_BANYAN, "Banyan Vines" },
+ { AFNUM_E164NSAP, "E.164 with NSAP subaddress" },
+ { AFNUM_DNS, "DNS (Domain Name System)" },
+ { AFNUM_DISTNAME, "Distinguished Name" },
+ { AFNUM_AS_NUMBER, "AS Number" },
+ { AFNUM_XTP_IP4, "XTP over IP version 4" },
+ { AFNUM_XTP_IP6, "XTP over IP version 6" },
+ { AFNUM_XTP, "XTP native mode XTP" },
+ { AFNUM_FC_WWPN, "Fibre Channel World-Wide Port Name" },
+ { AFNUM_FC_WWNN, "Fibre Channel World-Wide Node Name" },
+ { AFNUM_GWID, "GWID" },
+ { AFNUM_L2VPN, "Layer-2 VPN" },
+ { AFNUM_L2VPN_OLD, "Layer-2 VPN (old)" },
{ AFNUM_EIGRP_COMMON, "EIGRP Common Service Family" },
- { AFNUM_EIGRP_IPV4, "EIGRP IPv4 Service Family" },
- { AFNUM_EIGRP_IPV6, "EIGRP IPv6 Service Family" },
- { AFNUM_LCAF, "LISP Canonical Address Format (LCAF)" },
- { AFNUM_LINK_STATE, "Link State and TE information" },
- { AFNUM_EUI48, "48-bit MAC Address" },
- { AFNUM_EUI64, "64-bit MAC Address" },
- { 65535, "Reserved" },
+ { AFNUM_EIGRP_IPV4, "EIGRP IPv4 Service Family" },
+ { AFNUM_EIGRP_IPV6, "EIGRP IPv6 Service Family" },
+ { AFNUM_LCAF, "LISP Canonical Address Format (LCAF)" },
+ { AFNUM_LINK_STATE, "Link State and TE information" },
+ { AFNUM_EUI48, "48-bit MAC Address" },
+ { AFNUM_EUI64, "64-bit MAC Address" },
+ { 65535, "Reserved" },
{ 0, NULL },
};
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */