]> asedeno.scripts.mit.edu Git - PuTTY.git/commit
Created a shiny new abstraction for the socket handling. Has many
authorSimon Tatham <anakin@pobox.com>
Mon, 23 Oct 2000 10:32:37 +0000 (10:32 +0000)
committerSimon Tatham <anakin@pobox.com>
Mon, 23 Oct 2000 10:32:37 +0000 (10:32 +0000)
commitbbbda4110b960bd46f5d27c1d7107f4290b83f68
tree263be55278450b0ce4b8de57406d10f4586468b2
parent882f653081e8a8ffc2ec3f9f674692019cbe7d2e
Created a shiny new abstraction for the socket handling. Has many
advantages:
 - protocol modules can call sk_write() without having to worry
   about writes blocking, because blocking writes are handled in the
   abstraction layer and retried later.
 - `Lost connection while sending' is a thing of the past.
 - <winsock.h> is no longer needed in most modules, because
   "putty.h" doesn't have to declare `SOCKET' variables any more,
   only the abstracted `Socket' type.
 - select()-equivalent between multiple sockets will now be handled
   sensibly, which opens the way for things like SSH port
   forwarding.

[originally from svn r744]
20 files changed:
Makefile
be_all.c
be_none.c
be_nossh.c
ldisc.c
misc.c
noise.c
plink.c
putty.h
raw.c
scp.c
settings.c
sizetip.c
ssh.c
telnet.c
terminal.c
windlg.c
window.c
winstore.c
xlat.c