diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-01-19 23:34:48 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-01-19 23:34:48 +0000 |
commit | 486518fcaaa4b373ad28bfaa87b26523a50d9cd2 (patch) | |
tree | f353e6fbb8a862121294775d61b335e29d780799 /net/arpwatch-devel/files/patch-af | |
parent | Add p5-DBI-Shell 11.93, interactive command shell for the DBI. (diff) |
This is a development fork of arpwatch. This has been
threaded in order to better deal with the requirements of
multi-interface routers. Information regarding MAC addresses
and interfaces is maintained by the program, and an alert is
issued should a device move between interfaces. In addition,
event processing has been refactored, and some bugs have been
fixed.
PR: 59180
Submitted by: Matthew George <mdg@secureworks.net>
Approved by: portmgr
Notes
Notes:
svn path=/head/; revision=98614
Diffstat (limited to 'net/arpwatch-devel/files/patch-af')
-rw-r--r-- | net/arpwatch-devel/files/patch-af | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/net/arpwatch-devel/files/patch-af b/net/arpwatch-devel/files/patch-af index 0145483d51e2..432cc064acd6 100644 --- a/net/arpwatch-devel/files/patch-af +++ b/net/arpwatch-devel/files/patch-af @@ -1,17 +1,16 @@ ---- ethercodes.dat.orig Thu May 3 21:59:10 2001 -+++ ethercodes.dat Tue Nov 11 10:59:56 2003 -@@ -4419,7 +4419,7 @@ - 0:d0:b4 KATSUJIMA CO., LTD. - 0:d0:b5 DOTCOM - 0:d0:b6 CRESCENT NETWORKS, INC. --0:d0:b7 INTEL CORPOTATION -+0:d0:b7 INTEL CORPORATION - 0:d0:b8 IOMEGA CORP. - 0:d0:b9 MICROTEK INTERNATIONAL, INC. - 0:d0:ba CISCO SYSTEMS, INC. -@@ -4964,3 +4964,5 @@ - c0:0:0 Western Digital (may be reversed 00 00 C0?) - e2:c:f Kingston Technologies - ec:10:0 Enance Source Co., Ltd. PC clones(?) -+0:bd:11 VMWare Inc -+0:bd:fb VMWare Inc +--- ../arpwatch-2.1a11/arpwatch.h Sat Sep 30 19:40:55 2000 ++++ ./arpwatch.h Fri Sep 12 17:01:42 2003 +@@ -1,6 +1,7 @@ + /* @(#) $Id: arpwatch.h,v 1.29 2000/09/30 23:40:49 leres Exp $ (LBL) */ + + #define ARPFILE "arp.dat" ++#define ETHERFILE "ether.dat" + #define ETHERCODES "ethercodes.dat" + #define CHECKPOINT (15*60) /* Checkpoint time in seconds */ + +@@ -40,3 +41,5 @@ + #define SPA(ap) ((ap)->arp_spa) + #define TPA(ap) ((ap)->arp_tpa) + #endif ++ ++int pcap_thread(char *); |