diff options
author | hannes <hannes> | 2004-04-26 17:49:44 +0000 |
---|---|---|
committer | hannes <hannes> | 2004-04-26 17:49:44 +0000 |
commit | b4709d5e6fd8e7485bd679292bd2abf8b22e9e43 (patch) | |
tree | 3676089e31cde0aa586481b40612d8bc347c3766 /ipproto.h | |
parent | 063402b5808cb8c842737188db3df37c2df8b660 (diff) | |
download | tcpdump-b4709d5e6fd8e7485bd679292bd2abf8b22e9e43.tar.gz |
add infrastructure for host-OS indep. ipproto name resolution
Diffstat (limited to 'ipproto.h')
-rw-r--r-- | ipproto.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -30,13 +30,15 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#) $Header: /tcpdump/master/tcpdump/ipproto.h,v 1.2 2003-11-24 20:30:51 guy Exp $ (LBL) + * @(#) $Header: /tcpdump/master/tcpdump/ipproto.h,v 1.3 2004-04-26 17:49:44 hannes Exp $ (LBL) * * From: * @(#)in.h 8.3 (Berkeley) 1/3/94 * $FreeBSD: src/sys/netinet/in.h,v 1.38.2.3 1999/08/29 16:29:34 peter Exp $ */ +extern struct tok ipproto_values[]; + #ifndef IPPROTO_IP #define IPPROTO_IP 0 /* dummy for IP */ #endif @@ -113,8 +115,8 @@ #ifndef IPPROTO_ND #define IPPROTO_ND 77 /* Sun net disk proto (temp.) */ #endif -#ifndef IPPROTO_IGRP -#define IPPROTO_IGRP 88 /* Cisco/GXS IGRP */ +#ifndef IPPROTO_EIGRP +#define IPPROTO_EIGRP 88 /* Cisco/GXS IGRP */ #endif #ifndef IPPROTO_OSPF #define IPPROTO_OSPF 89 |