Changes to proxytunnel version 1.1.1 -- Sun Apr 21 10:52:56 CEST 2002

- Commented some of the existing code
- Added support for host, proxy and connection definitions from a
  $HOME/.proxytunnel and/or an /etc/proxytunnel config file. The
  -C/--connection, -P/--proxy and -H/--host options point to sections
  (Windows .ini file format :-) in these files. E.g.:

	[muppetzone_from_bigacme]
	host=muppetzone
	proxy=customer_proxy

	[muppetzone]
	host=gatekeeper.muppetzone.com
	port=443

	[customer_proxy]
	host=proxy.bigacme.com
	port=8080
	user=muppet
	password=rulez:-)

	[sourceforge_from_bigacme]
	host=sourceforge
	proxy=customer_proxy

	[sourceforge]
	host=www.sourceforge.com
	port=22

  Then use:

  	proxytunnel -C muppetzone_from_bigacme
		or
	proxytunnel -d some.other.host -D 443 --proxy customer_proxy
		or
	proxytunnel --host sourceforge --proxy customer_proxy
		or
	.... you get the idea ....

Changes to proxytunnel version 1.1.0 -- Sat Apr 20 16:00:00 CET 2002

- Added the -a (--standalone=INT) option. It is mutually exclusive with
  -i (--inetd), and it instructs proxytunnel to fork in the background
  as a standalone daemon, listening on connections on the specified
  port and forwarding these connections through the specified
  proxy/tunnel.

Changes to proxytunnel version 1.0.8 -- Fri Apr 19 10:25:00 CET 2002

- Fixed help-text when system doesn't support long-options
- Cleaned up some code w.r.t short and/or long options, added includes
  for getopt on freebsd.

Changes to proxytunnel version 1.0.7 -- Wed Nov 28 09:49:41 CET 2001

- Added rpm spec file by Ralph Loader <suckfish@ihug.co.nz> -- Maniac
- Updated textfiles

Changes to proxytunnel version 1.0.7 -- Sat Nov 24 12:32:02 CET 2001

- Applied patch from "Andrew Griffiths" <nullptr@tasmail.com> to fix
  possible string format attacks. -- Maniac
- Some code cleanup and reformatting -- Maniac
- Added '-q' / '--quiet' flag to suppress status messages, Proxytunnel
  can now be completely quiet and transparent. (Not when also providing
  the '-v' flag naturally) -- Maniac
- Changed ipbuf size to 16, which should be enough. -- Maniac

Changes to proxytunnel version 1.0.6 -- Thu Nov 22 10:38:10 CET 2001

- Added support for compiling on Solaris, uncomment some lines in the
  Makefile to enable this, patch from: Martin Senft <martin@illicon.de>
- Included (modified) patch from Ralph Loader <suckfish@ihug.co.nz> to
  work around broken DNS resolving in some proxies when using DynDNS
  hosts (the -n or --dottedquad option) -- Maniac

Changes to proxytunnel version 1.0.5 -- Mon Nov 19 21:26:45 CET 2001

- Added support for running from inetd, using the --inetd option or
  the -i option. Also some cleanups in the tunneling code -- Muppet

Changes to proxytunnel version 1.0.4 -- Sun Nov 11 00:44:39 CET 2001

- All the code by Jos and Mark now covered under GPL, the few lines of
  base64 code came from mutt (also GPL), so the entire program is now
  covered by the GPL -- Maniac

Changes to proxytunnel version 1.0.3 -- Sat Nov 10 21:36:42 CET 2001

- Supporting GNU getopts, the entire command line processing has
  changed. If you were using an old version, please check up on the
  '--help' option, and update your .ssh/config files :) -- Maniac

- Added a --verbose option, which occasionally can print some
  interesting details -- Maniac

- Due to getopts, some error handling when entering incorrect command
  line options -- Maniac

- In addition to using HTTP auth, which we already had, we can now also
  connect to proxy's that do NOT use HTTP auth, simply do not specify a
  username and password. If you specify these, they will be passed on to
  the proxy, otherwise we won't go into auth phase. -- Maniac

- Added simple 'make install' to the makefile -- Maniac
