diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-12 00:06:47 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-12 00:06:47 +0000 |
commit | fcb4c78a6a01d22f0db9d6de870342511030cb01 (patch) | |
tree | d32b2d7467b0266e722aa763c9b48cf0df2c802c /packet-ipx.c | |
parent | c2eeef9467d44eb4ea2cd6bd08f62f5c9c293810 (diff) | |
download | wireshark-fcb4c78a6a01d22f0db9d6de870342511030cb01.tar.gz wireshark-fcb4c78a6a01d22f0db9d6de870342511030cb01.tar.bz2 wireshark-fcb4c78a6a01d22f0db9d6de870342511030cb01.zip |
A lengthy patch to add the wiretap library. Wiretap is not used by default
because it is still in its infancy, but it can be compiled in optionally.
The library exists in its own subdirectory ethereal/wiretap. This patch also
edits all the packet-*.c files to remove the #include <pcap.h> line which is
unnecessary in these files. In the ethereal code, file.c is the most heavily
modified with #ifdef WITH_WIRETAP lines for the optional library.
svn path=/trunk/; revision=82
Diffstat (limited to 'packet-ipx.c')
-rw-r--r-- | packet-ipx.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/packet-ipx.c b/packet-ipx.c index 93334ac25c..e94fbc0bef 100644 --- a/packet-ipx.c +++ b/packet-ipx.c @@ -2,7 +2,7 @@ * Routines for NetWare's IPX * Gilbert Ramirez <gram@verdict.uthscsa.edu> * - * $Id: packet-ipx.c,v 1.11 1998/10/14 05:18:30 gram Exp $ + * $Id: packet-ipx.c,v 1.12 1998/11/12 00:06:30 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@unicom.net> @@ -29,7 +29,6 @@ #endif #include <gtk/gtk.h> -#include <pcap.h> #include <stdio.h> @@ -37,10 +36,6 @@ # include <sys/types.h> #endif -#ifdef HAVE_NETINET_IN_H -# include <netinet/in.h> -#endif - #include "ethereal.h" #include "packet.h" #include "packet-ipx.h" @@ -94,6 +89,7 @@ static struct port_info ports[] = { { 0x0551, NULL, "NWLink SMB Name Query" }, { 0x0553, dissect_nwlink_dg,"NWLink SMB Datagram" }, { 0x055d, NULL, "Attachmate Gateway" }, + { 0x4001, NULL, "IPX Message" }, { 0x0000, NULL, NULL } }; |