diff options
author | adrianp <adrianp@pkgsrc.org> | 2006-02-05 00:33:34 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2006-02-05 00:33:34 +0000 |
commit | 974ed1ad88dd12787129db377dac4b71f33c8384 (patch) | |
tree | 67acfa60b9b50e3a38cb86520029baff6f6f02bd /net/socat | |
parent | 181008719d4b1b91912e400cb71965e5b2a3ccc2 (diff) | |
download | pkgsrc-974ed1ad88dd12787129db377dac4b71f33c8384.tar.gz |
Update to 1.4.3.1
> ####################### V 1.4.3.1:
>
> corrections:
> PROBLEM: UNIX socket listen accepted only one (or a few) connections.
> FIX: do not remove listening UNIX socket in child process
>
> PROBLEM: SIGSEGV when TCP part of SSL connect failed
> FIX: check ssl pointer before calling SSH_shutdown
>
> In debug mode, show connect client port even when connect fails
>
> ####################### V 1.4.3.0:
>
> new features:
> socat options -L, -W for application level locking
>
> options "lockfile", "waitlock" for address level locking
> (Stefan Luethje)
>
> option "readbytes" limits read length (Adam Osuchowski)
>
> option "retry" for unix-connect, unix-listen, tcp6-listen (Dale Dude)
> socat options -L, -W for application level locking
>
> options "lockfile", "waitlock" for address level locking
> (Stefan Luethje)
>
> option "readbytes" limits read length (Adam Osuchowski)
>
> option "retry" for unix-connect, unix-listen, tcp6-listen (Dale Dude)
>
> pty symlink, unix listen socket, and named pipe are per default removed
> after use; option unlink-close overrides this new behaviour and also
> controls removal of other socat generated files (Stefan Luethje)
>
> corrections:
> option "retry" did not work with tcp-listen
>
> EPIPE condition could result in a 100% CPU loop
>
> further changes:
> support systems without SHUT_RD etc.
> handle more size_t types
> try to find makedepend options with gcc 3 (richard/OpenMacNews)
Diffstat (limited to 'net/socat')
-rw-r--r-- | net/socat/Makefile | 6 | ||||
-rw-r--r-- | net/socat/distinfo | 10 | ||||
-rw-r--r-- | net/socat/patches/patch-aa | 11 |
3 files changed, 14 insertions, 13 deletions
diff --git a/net/socat/Makefile b/net/socat/Makefile index d71ef4fd8b3..0b7f963bdf9 100644 --- a/net/socat/Makefile +++ b/net/socat/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2005/04/11 21:46:59 tv Exp $ +# $NetBSD: Makefile,v 1.9 2006/02/05 00:33:34 adrianp Exp $ -DISTNAME= socat-1.4.2.0 +DISTNAME= socat-1.4.3.1 CATEGORIES= net MASTER_SITES= http://www.dest-unreach.org/socat/download/ @@ -16,7 +16,7 @@ CONFIGURE_ARGS+= --disable-libwrap CONFIGURE_ARGS+= --with-readline=${BUILDLINK_PREFIX.readline} SUBST_CLASSES+= paths -SUBST_MESSAGE.paths= "Fixing hardcoded paths." +SUBST_MESSAGE.paths= Fixing hardcoded paths. SUBST_STAGE.paths= post-patch SUBST_FILES.paths= socat.1 SUBST_SED.paths= -e 's,/usr/,${PREFIX}/,g' diff --git a/net/socat/distinfo b/net/socat/distinfo index ebb699b6553..5fd5acd4f94 100644 --- a/net/socat/distinfo +++ b/net/socat/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2005/03/26 11:40:30 adrianp Exp $ +$NetBSD: distinfo,v 1.7 2006/02/05 00:33:34 adrianp Exp $ -SHA1 (socat-1.4.2.0.tar.gz) = 68302cc6d1bd3b58f5fc37fbd4aa969aef185241 -RMD160 (socat-1.4.2.0.tar.gz) = 6a0f0b6e1a714381a48451da877cf0693d8ca7f1 -Size (socat-1.4.2.0.tar.gz) = 331493 bytes -SHA1 (patch-aa) = 80e88873bd80c98f8d9209c1b2204c8addb2bdb0 +SHA1 (socat-1.4.3.1.tar.gz) = 05d23aac70cfb8af280225752939d3d3f16236c9 +RMD160 (socat-1.4.3.1.tar.gz) = 83a2d447b001bb4f43ce66343b641834eea14e5c +Size (socat-1.4.3.1.tar.gz) = 339694 bytes +SHA1 (patch-aa) = 1d9f252348eff208fb05e27b12e6d0c5adcd30e6 diff --git a/net/socat/patches/patch-aa b/net/socat/patches/patch-aa index 4a68259a991..f72c72d9f39 100644 --- a/net/socat/patches/patch-aa +++ b/net/socat/patches/patch-aa @@ -1,14 +1,15 @@ -$NetBSD: patch-aa,v 1.2 2004/09/30 12:42:46 adrianp Exp $ +$NetBSD: patch-aa,v 1.3 2006/02/05 00:33:34 adrianp Exp $ ---- Makefile.in.orig 2004-09-30 13:23:21.000000000 +0000 -+++ Makefile.in 2004-09-30 13:24:30.000000000 +0000 -@@ -21,12 +21,12 @@ +--- Makefile.in.orig 2006-01-29 17:14:11.000000000 +0000 ++++ Makefile.in +@@ -21,13 +21,13 @@ srcdir = @srcdir@ VPATH = @srcdir@ CC = @CC@ -CCOPTS = $(CCOPT) -Wall -Wno-parentheses -+CCOPTS = $(CCOPT) ++CCOPTS = $(CCOPT) + SYSDEFS = @SYSDEFS@ CPPFLAGS = -I. @CPPFLAGS@ #0 INCLS = -I. @V_INCL@ DEFS = @DEFS@ |