diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-17 06:29:14 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-17 06:29:14 +0000 |
commit | c5aaac7823896a3dba279c92b6ae9eb5cd503a9e (patch) | |
tree | 1d18b9aa9f7d6529c782365c49361fa45d60d974 /packet-ip.c | |
parent | d01ff0c85783b03fd0d9f52dbb384c71ae6a459e (diff) | |
download | wireshark-c5aaac7823896a3dba279c92b6ae9eb5cd503a9e.tar.gz wireshark-c5aaac7823896a3dba279c92b6ae9eb5cd503a9e.tar.bz2 wireshark-c5aaac7823896a3dba279c92b6ae9eb5cd503a9e.zip |
Move the declaration of "ipprotostr()" out of "epan/packet.h" into a new
"ipproto.h" header file.
svn path=/trunk/; revision=3313
Diffstat (limited to 'packet-ip.c')
-rw-r--r-- | packet-ip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-ip.c b/packet-ip.c index dfe656ca0b..99d8b8d5f4 100644 --- a/packet-ip.c +++ b/packet-ip.c @@ -1,7 +1,7 @@ /* packet-ip.c * Routines for IP and miscellaneous IP protocol packet disassembly * - * $Id: packet-ip.c,v 1.129 2001/03/28 21:33:31 guy Exp $ + * $Id: packet-ip.c,v 1.130 2001/04/17 06:29:12 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -45,6 +45,7 @@ #include "packet.h" #include "resolv.h" +#include "ipproto.h" #include "prefs.h" #include "etypes.h" #include "greproto.h" |