diff options
author | wiz <wiz> | 2003-04-09 09:12:09 +0000 |
---|---|---|
committer | wiz <wiz> | 2003-04-09 09:12:09 +0000 |
commit | 63376980a7c695684df60898e88a1cb912ccab92 (patch) | |
tree | af46b066f946b2c2ff2dc27061057264d513b35b | |
parent | ee133047bff90c97b36d9d0751ca06d6a33b5662 (diff) | |
download | pkgsrc-63376980a7c695684df60898e88a1cb912ccab92.tar.gz |
Update to 0.42, provided by Todd Vierling in PR 21068:
2003-02-20 0.42
- fixed a long-standing bug in dsbl handler - data received from
the remote was not collected correctly. Well, this one wasn't
happened too frequently - I only seen it once, when a proxy
delivered data from the target mailserver one byte at a time.
- added yet another port, 1813 (socks5), as advanced (level2) port.
SKK proxy listens here, but it is seen unfrequently.
2003-02-14 0.42b2
- added proxylogger - receiving part of proxycheck, to be used
from inetd and with -c chat.
2003-02-12 0.42b1
- fixed a small bug in last wingate/telnet code changes (mostly
cosmetic: "Resource temporarily unavailable" vs "Connection timed out").
- added another telnet/wingate proxy variant, with a prompt
"SpoonProxy>", which expects a command in form "host port"
(instead of tn-wg/wingate which is of the form "host:port").
2003-02-04 0.42b
- some code cleanups/changes: may break things, testing...
- FTP proxy detection added, port 1183 only for now. Interesting
to experiment with M$ ftp servers ;)
- fixed not finding advanced protocol if no ports are specified
(e.g. -pwg: tried default protos:ports instead of wg:25,1181)
- modified telnet/wingate proxy code to be a bit faster and to
know which command to sent to a particular proxy.
-rw-r--r-- | net/proxycheck/Makefile | 6 | ||||
-rw-r--r-- | net/proxycheck/distinfo | 7 | ||||
-rw-r--r-- | net/proxycheck/patches/patch-aa | 17 |
3 files changed, 7 insertions, 23 deletions
diff --git a/net/proxycheck/Makefile b/net/proxycheck/Makefile index b6d0a0d03f8..f1d9378b74a 100644 --- a/net/proxycheck/Makefile +++ b/net/proxycheck/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2003/02/17 11:50:40 zuntum Exp $ +# $NetBSD: Makefile,v 1.2 2003/04/09 09:12:09 wiz Exp $ # -DISTNAME= proxycheck-0.41 +DISTNAME= proxycheck-0.42 CATEGORIES= net MASTER_SITES= http://www.corpit.ru/mjt/proxycheck/ @@ -9,6 +9,8 @@ MAINTAINER= tv@pobox.com HOMEPAGE= http://www.corpit.ru/mjt/proxycheck.html COMMENT= Tester for open (promiscuous) proxy systems +MAKE_FLAGS+= CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/proxycheck ${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/proxycheck.1 ${PREFIX}/man/man1/ diff --git a/net/proxycheck/distinfo b/net/proxycheck/distinfo index 84e5faa930d..052de8e22d7 100644 --- a/net/proxycheck/distinfo +++ b/net/proxycheck/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.1.1.1 2003/02/17 11:50:40 zuntum Exp $ +$NetBSD: distinfo,v 1.2 2003/04/09 09:12:09 wiz Exp $ -SHA1 (proxycheck-0.41.tar.gz) = 4594f1b2b1e17edc150a3846526c92b3e5f1e2c6 -Size (proxycheck-0.41.tar.gz) = 26363 bytes -SHA1 (patch-aa) = f837783b2b68d022dd5a68e2e751a6a895d4877c +SHA1 (proxycheck-0.42.tar.gz) = 5fb6f02c82ee069d76b8bf0bba77f7c825202b76 +Size (proxycheck-0.42.tar.gz) = 29395 bytes diff --git a/net/proxycheck/patches/patch-aa b/net/proxycheck/patches/patch-aa deleted file mode 100644 index 5149ace768a..00000000000 --- a/net/proxycheck/patches/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2003/02/17 11:50:40 zuntum Exp $ - ---- Makefile.orig Wed Jan 29 10:58:02 2003 -+++ Makefile Wed Jan 29 11:00:01 2003 -@@ -1,12 +1,5 @@ --CC = cc --CFLAGS = -O - DEFS = -D_GNU_SOURCE - LD = $(CC) --LDFLAGS = -- --# For Solaris, we need -lsocket -lnsl and -lresolv for inet_aton --SOCKLIBS = `[ -f /usr/lib/libsocket.so ] && echo -lresolv -lsocket -lnsl || :` -- - USE_CFLAGS = $(CFLAGS) $(DEFS) - - SRCS = proxycheck.c pxy.c event.c memmem.c |