aboutsummaryrefslogtreecommitdiffstats
path: root/epan/afn.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-09-29 00:52:45 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-09-29 00:52:45 +0000
commit57d8f3504a730e19dd239bbdb08cf3f7d090a7fd (patch)
treee8504dda24b1aaede3776d8c20fd4379a0df3ba2 /epan/afn.h
parent4d6e7f266d587c2fe6f3b6770ec01776269fa2d0 (diff)
Move various tables into the epan directory.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12130 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/afn.h')
-rw-r--r--epan/afn.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/epan/afn.h b/epan/afn.h
new file mode 100644
index 0000000000..d621c44821
--- /dev/null
+++ b/epan/afn.h
@@ -0,0 +1,48 @@
+/* afn.h
+ * RFC 1700 address family numbers
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __AFN_H__
+#define __AFN_H__
+
+/* RFC1700 address family numbers */
+#define AFNUM_INET 1
+#define AFNUM_INET6 2
+#define AFNUM_NSAP 3
+#define AFNUM_HDLC 4
+#define AFNUM_BBN1822 5
+#define AFNUM_802 6
+#define AFNUM_E163 7
+#define AFNUM_E164 8
+#define AFNUM_F69 9
+#define AFNUM_X121 10
+#define AFNUM_IPX 11
+#define AFNUM_ATALK 12
+#define AFNUM_DECNET 13
+#define AFNUM_BANYAN 14
+#define AFNUM_E164NSAP 15
+/* draft-kompella-ppvpn-l2vpn */
+#define AFNUM_L2VPN 196
+extern const value_string afn_vals[];
+
+#endif /* __AFN_H__ */