Created a shiny new abstraction for the socket handling. Has many
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 23 Oct 2000 10:32:37 +0000 (10:32 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 23 Oct 2000 10:32:37 +0000 (10:32 +0000)
commit8df7a775f6f8b0f81f84eafe28cd0bb8d4c6d1f4
tree263be55278450b0ce4b8de57406d10f4586468b2
parentca2d59436752b1d46a12d4d4fabd366fac81b0ca
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.

git-svn-id: svn://svn.tartarus.org/sgt/putty@744 cda61777-01e9-0310-a592-d414129be87e
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