diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-03-05 20:11:36 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-03-05 20:11:36 +0000 |
commit | 3941a1e3a4a51328622a9680fe703c58a09f48b3 (patch) | |
tree | 20618a478f508b5d533da0879db49d94bb1aa958 /packet-igrp.c | |
parent | 63887cb8c83f19966523263172160f995fa1bcd6 (diff) | |
download | wireshark-3941a1e3a4a51328622a9680fe703c58a09f48b3.tar.gz wireshark-3941a1e3a4a51328622a9680fe703c58a09f48b3.tar.bz2 wireshark-3941a1e3a4a51328622a9680fe703c58a09f48b3.zip |
Move the definition of IP_PROTO_IGRP to "packet-ip.h", and put an entry
for IGRP in the table in "ipproto.c".
Get rid of a duplicate entry for TCP in the same table, and also get rid
of the entry for IP_PROTO_IPV4 right after IP_PROTO_IPIP, as
IP_PROTO_IPIP and IP_PROTO_IPV4 are both 4.
svn path=/trunk/; revision=3106
Diffstat (limited to 'packet-igrp.c')
-rw-r--r-- | packet-igrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-igrp.c b/packet-igrp.c index 86a31f1b3e..c4180bcd3e 100644 --- a/packet-igrp.c +++ b/packet-igrp.c @@ -2,7 +2,7 @@ * Routines for IGRP dissection * Copyright 2000, Paul Ionescu <paul@acorp.ro> * - * $Id: packet-igrp.c,v 1.5 2001/01/22 03:33:45 guy Exp $ + * $Id: packet-igrp.c,v 1.6 2001/03/05 20:11:36 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -36,8 +36,8 @@ #include <string.h> #include <glib.h> #include "packet.h" +#include "packet-ip.h" -#define IP_PROTO_IGRP 9 #define IGRP_HEADER_LENGTH 12 #define IGRP_ENTRY_LENGTH 14 |