diff --git a/CHANGES b/CHANGES index 9f034b3..f55e9a0 100755 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +Changes to proxytunnel version 1.0.7 -- Wed Nov 28 09:49:41 CET 2001 + +- Added rpm spec file by Ralph Loader -- Maniac +- Updated textfiles + Changes to proxytunnel version 1.0.7 -- Sat Nov 24 12:32:02 CET 2001 - Applied patch from "Andrew Griffiths" to fix diff --git a/CREDITS b/CREDITS index 6874672..3fb130e 100644 --- a/CREDITS +++ b/CREDITS @@ -3,10 +3,11 @@ people. Jos Visser - Initial coder and developer a.k.a. The Muppet - Mark Janssen - Main coder/developer + Mark Janssen - Maintainer / Developer a.k.a. Maniac - Ralph Loader - Broken DNS w/ DynDNS patch + Ralph Loader - Broken DNS w/ DynDNS + patch, rpm Spec file Martin Senft - Solaris patches Andrew Griffiths" - String format fixes diff --git a/LICENSE.txt b/LICENSE.txt index 4d7ac4b..61c4ee7 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -15,6 +15,8 @@ and came with the following copyright notice: * redistribution of source. */ +Other contributors can be found in the CREDITS file + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/Makefile b/Makefile index 0666141..39abc14 100755 --- a/Makefile +++ b/Makefile @@ -5,9 +5,10 @@ CC = gcc CFLAGS = -Wall -DHAVE_GETOPT_LONG LDFLAGS = +INSTALLPATH = /usr/local/bin # Solaris needs this (According to Martin Senft ) -# CFLAGS = -I/usr/include -Wall +# CFLAGS = -I /usr/include -Wall # LDFLAGS = -lsocket -lnsl PROGNAME = proxytunnel @@ -21,5 +22,5 @@ clean: @rm -f $(PROGNAME) $(OBJ) install: - mkdir -p /usr/local/bin - install -g root -m755 -o root $(PROGNAME) /usr/local/bin/$(PROGNAME) + mkdir -p $(INSTALLPATH) + install -g root -m755 -o root $(PROGNAME) $(INSTALLPATH)/$(PROGNAME) diff --git a/README b/README index 1b0df2d..6016b4e 100755 --- a/README +++ b/README @@ -3,7 +3,7 @@ proxytunnel ----------- Author: Jos Visser , Mark Janssen -Date: Mon Nov 19 21:26:45 CET 2001 +Date: Wed Nov 28 09:46:19 CET 2001 Version: 1.0.7 Hi all, @@ -21,7 +21,7 @@ Usage: Proxytunnel is very easy to use, when running proxytunnel with the help option it specifies it's commandline options. -# proxytunnel --help +$ ./proxytunnel --help Proxytunnel 1.0.7 Jos Visser (Muppet) , Mark Janssen (Maniac) @@ -38,14 +38,17 @@ Usage: Proxytunnel [OPTIONS]... -G INT --proxyport=INT HTTPS Proxy portnumber to connect to -d STRING --desthost=STRING Destination host to built the tunnel to -D INT --destport=INT Destination portnumber to built the tunnel to - -n --dottedquad Locally resolve destination hostname + -n --dottedquad Convert destination hostname to dotted quad -v --verbose Turn on verbosity (default=off) + -q --quiet Suppress messages (default=off) + To use this program with OpenSSH to connect to a host somewhere, create a $HOME/.ssh/config file with the following content: Host foobar -ProxyCommand /path/to/proxytunnel -g proxy.customer.com -G 8080 -u user + ProtocolKeepAlives 30 + ProxyCommand /path/to/proxytunnel -g proxy.customer.com -G 8080 -u user -s password -d mybox.athome.nl -D 443 With: