diff options
author | wiz <wiz> | 2005-03-23 17:06:33 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-03-23 17:06:33 +0000 |
commit | bfce92f2d33e08735cde1ebe9e78eeb5e7494903 (patch) | |
tree | 9323a246c15cacd530e4c1f055cb553304d52123 /net/libnids/patches | |
parent | a550f26fbed1d3112f3342b02c1bb3acd4e5e98b (diff) | |
download | pkgsrc-bfce92f2d33e08735cde1ebe9e78eeb5e7494903.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/patches')
-rw-r--r-- | net/libnids/patches/patch-aa | 15 |
1 files changed, 0 insertions, 15 deletions
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; |