summaryrefslogtreecommitdiff
path: root/net/arpwatch-devel/files/patch-aj
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-03-20 06:52:41 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-03-20 06:52:41 +0000
commit8cebb8c7f21209c0e83ffdc38ff48c5b49722d0d (patch)
tree8a0dff6242cec7f17437381a9c729e2113596eac /net/arpwatch-devel/files/patch-aj
parent- Add WWW: (diff)
- Move arpwatch-devel to new category - net-mgmt
PR: ports/64483 Submitted by: Matthew George <mdg@secureworks.net>
Notes
Notes: svn path=/head/; revision=104702
Diffstat (limited to 'net/arpwatch-devel/files/patch-aj')
-rw-r--r--net/arpwatch-devel/files/patch-aj25
1 files changed, 0 insertions, 25 deletions
diff --git a/net/arpwatch-devel/files/patch-aj b/net/arpwatch-devel/files/patch-aj
deleted file mode 100644
index 0e8ba51448f7..000000000000
--- a/net/arpwatch-devel/files/patch-aj
+++ /dev/null
@@ -1,25 +0,0 @@
---- ../arpwatch.orig/db.h Wed Jun 5 01:39:30 1996
-+++ ./db.h Mon Sep 15 14:55:27 2003
-@@ -1,10 +1,21 @@
- /* @(#) $Header: db.h,v 1.8 96/06/04 22:39:29 leres Exp $ (LBL) */
-
-+#define HASHSIZE (2 << 15)
-+
- typedef void (*ent_process)(u_int32_t, u_char *, time_t, char *);
-
- #ifdef DEBUG
- void debugdump(void);
- #endif
--int ent_add(u_int32_t, u_char *, time_t, char *);
-+int ent_add(u_int32_t, u_char *, time_t, char *, char *);
- int ent_loop(ent_process);
- void sorteinfo(void);
-+
-+/* Ethernet info */
-+struct einfo {
-+ u_char e[6]; /* ether address */
-+ char h[34]; /* simple hostname */
-+ time_t t; /* timestamp */
-+ char iface[10]; /* interface name */
-+};
-+