Putty commits

RevisionAuthorDateDescription
8159simon01 Sep 2008 13:56:20

Fix punctuation in the large print statements. In particular, one
semicolon which crept in in r8138 was causing a lot of the "make
install" implementation to be missing from Makefile.gtk.

8158simon31 Aug 2008 17:45:39

Good grief. When I originally wrote the local proxy code two years
ago, I apparently caused all data received from local proxies to be
unconditionally tagged as TCP Urgent. Most network backends ignore
this, but it's critical to the Telnet backend, which will ignore all
Urgent-marked data in the assumption that there's a SYNCH on its way
that it should wait for. Nobody has noticed in two years, presumably
meaning that nobody has ever tried to do Telnet over a local proxy
in that time.

8157simon31 Aug 2008 15:18:17

Colin Watson points out an apparently erroneous cast: Ssh_gss_name
and gss_name_t are supposed to be congruent types, so a pointer to
one should never be cast to a non-indirect instance of the other.

8156simon31 Aug 2008 13:12:37

Minor code cleanup: I just happened to be looking at this file for
other reasons and I noticed that the list of TELOPTs is given twice
and hence needs to be kept in sync. Replace with my now-standard
second-order-macro approach which allows the list to be maintained
in only one place.

8150jacob20 Aug 2008 18:21:04

Fix for portfwd-addr-family: on Unix, when a tunnel is specified as "Auto"
(rather than IPv4 or IPv6-only; this is the default), try to open up listening
sockets on both address families, rather than (unhelpfully) just IPv6. (And
don't open one if the other can't be bound, in a nod to CVE-2008-1483.)
Based on a patch from Ben A L Jemmett.

8142simon11 Aug 2008 14:03:34

James has made the URL syntax for http://svn.tartarus.org/ more
sensible. Update the FAQ link to it.

8139jacob10 Aug 2008 10:28:51

Link to pTerm, an SSH client for the iPhone that's apparently based on PuTTY.
Attempts at damage limitation from the name similarity with pterm.

Also try to refresh the ports section of the FAQ a bit.

8138owen10 Aug 2008 09:10:31

Initial commit of GSSAPI Kerberos support.

8121jacob19 Jul 2008 12:41:52

www.winputty.com

8120jacob18 Jul 2008 17:39:49

Another, subtly different version string for ssh2-bug-maxpkt, from Tim Kosse.

8119simon17 Jul 2008 13:01:27

At least one version of gcc won't figure out that "clear" is never
read uninitialised (because the only circumstance under which it
isn't initialised is when "update" is FALSE, in which case it isn't
read either). Placate it.

8117jacob11 Jul 2008 15:24:56

Replicate r8110 from PSFTP to PSCP, and various other minor patchery from
Roger Picton.

8110simon06 Jul 2008 08:24:56

Patch from Tim Kosse: check back->exitcode() in both loops on
ssh_sftp_loop_iteration(), not just one. Fixes exiting on a negative
response to the host key confirmation prompt on Windows (because
winsftp.c doesn't have the equivalent of uxsftp.c's no_fds_ok); on
Unix it worked already but gave a suboptimal error message, which is
fixed too by this patch.