1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-07 22:58:11 +00:00
freebsd-ports/net/wireshark/files/patch-aa
Vanilla I. Shu 1ceb2a08d2 a network sniffer a la NetXray. With a little work and development this could
rival NetXray (which is approx $4,000).
PR:		ports/7581
Submitted by:	Bill Fumerola <billf@chc-chimes.com>
1998-09-18 21:53:24 +00:00

21 lines
540 B
Plaintext

--- ethereal.h.orig Thu Sep 17 19:14:28 1998
+++ ethereal.h Thu Sep 17 19:15:15 1998
@@ -27,6 +27,7 @@
#define __ETHEREAL_H__
#include "config.h"
+#include <machine/endian.h>
#define RC_FILE ".etherealrc"
#define MONO_MEDIUM_FONT "-*-lucidatypewriter-medium-r-normal-*-*-120-*-*-*-*-iso8859-1"
--- packet.c.orig Thu Sep 17 19:15:34 1998
+++ packet.c Thu Sep 17 19:15:48 1998
@@ -32,6 +32,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <ctype.h>
+#include <sys/types.h>
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>