summaryrefslogtreecommitdiff
path: root/net/libnids
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2005-03-23 17:06:33 +0000
committerwiz <wiz@pkgsrc.org>2005-03-23 17:06:33 +0000
commita2dd9d18b9f7f16459c065517bbd5a9c49c44a1b (patch)
tree9323a246c15cacd530e4c1f055cb553304d52123 /net/libnids
parent3c69cf21a33f0fa8822daa5b43758618df464947 (diff)
downloadpkgsrc-a2dd9d18b9f7f16459c065517bbd5a9c49c44a1b.tar.gz
Update to 1.20:
v1.20 Feb 4 2005 - added wscale option parsing; surprisingly, it seems to be in some use - added nids_dispatch(), for systems which do not ignore pcap timeout - ability to specify hosts/networks for which we do not check checksums v1.19 Aug 08 2004 - fixed signed/unsigned comparisons; 1.18 could be possibly crashed in tcp options parsing (though an unlikely to happen memory layout is required); now the source is compiled with -W -Wall - export pcap header of the last received packet (to get timestamp etc) - export the timeout parameter to pcap_open_live in params - support DLT_PRISM_HEADER - support DLT_PPP_SERIAL - let through dataless acks - fixed raw_init() prototype - switched to use %edi instead of %ebx in csum_partial to make gcc-3.5 happy when compiling with -fPIC; cleaned inline asm - fixed a bug when a queued FIN segment was not processed properly, which resulted in not closing a stream
Diffstat (limited to 'net/libnids')
-rw-r--r--net/libnids/Makefile6
-rw-r--r--net/libnids/distinfo9
-rw-r--r--net/libnids/patches/patch-aa15
3 files changed, 6 insertions, 24 deletions
diff --git a/net/libnids/Makefile b/net/libnids/Makefile
index 3d5babbd9b0..a003c8591b7 100644
--- a/net/libnids/Makefile
+++ b/net/libnids/Makefile
@@ -1,9 +1,7 @@
-# $NetBSD: Makefile,v 1.17 2005/02/05 16:11:47 adrianp Exp $
-# $FreeBSD: ports/net/libnids/Makefile,v 1.5 2000/04/24 07:42:58 kris Exp $
+# $NetBSD: Makefile,v 1.18 2005/03/23 17:06:33 wiz Exp $
#
-DISTNAME= libnids-1.18
-PKGREVISION= 2
+DISTNAME= libnids-1.20
CATEGORIES= net security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libnids/}
diff --git a/net/libnids/distinfo b/net/libnids/distinfo
index f387825c6ee..a9c7879448e 100644
--- a/net/libnids/distinfo
+++ b/net/libnids/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.7 2005/02/24 12:13:52 agc Exp $
+$NetBSD: distinfo,v 1.8 2005/03/23 17:06:33 wiz Exp $
-SHA1 (libnids-1.18.tar.gz) = 3494e614e5e5d2f60f2ffe738307e60e77e04a81
-RMD160 (libnids-1.18.tar.gz) = b33ba8237ba0bb31d2515bd5b7552449cfcca8f3
-Size (libnids-1.18.tar.gz) = 114013 bytes
-SHA1 (patch-aa) = 39c8271928ba37584b875550493e447c1eff0109
+SHA1 (libnids-1.20.tar.gz) = bafbe6529430cce2496dbb086b17caa0076368e1
+RMD160 (libnids-1.20.tar.gz) = 896562288dd43cc7789974ee0fd54f9e68e09449
+Size (libnids-1.20.tar.gz) = 119226 bytes
diff --git a/net/libnids/patches/patch-aa b/net/libnids/patches/patch-aa
deleted file mode 100644
index 24e3fb86974..00000000000
--- a/net/libnids/patches/patch-aa
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2004/05/29 22:14:23 cube Exp $
-
---- src/libnids.c.orig 2003-10-10 19:41:32.000000000 +0200
-+++ src/libnids.c
-@@ -452,6 +452,10 @@ int nids_init()
- case DLT_EN10MB:
- linkoffset = 14;
- break;
-+#ifdef DLT_PPP_SERIAL
-+ /* NetBSD specific type */
-+ case DLT_PPP_SERIAL:
-+#endif
- case DLT_PPP:
- linkoffset = 4;
- break;