X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/4017be6d5375063f59b63474490ac072e7f09b1a..4d331a77f20f321f867f5907e2ffc06249378881:/telnet.c diff --git a/telnet.c b/telnet.c index 9e6e6cdb..6618fdf8 100644 --- a/telnet.c +++ b/telnet.c @@ -1,7 +1,13 @@ #include #include #include +#ifndef AUTO_WINSOCK +#ifdef WINSOCK_TWO +#include +#else #include +#endif +#endif #include "putty.h" @@ -583,6 +589,12 @@ static char *telnet_init (HWND hwnd, char *host, int port, char **realhost) { * Set up SYNCH state. */ in_synch = FALSE; + + /* + * We have no pre-session phase. + */ + begin_session(); + return NULL; } @@ -608,8 +620,11 @@ static int telnet_msg (WPARAM wParam, LPARAM lParam) { if (s == INVALID_SOCKET) return 1; - if (WSAGETSELECTERROR(lParam) != 0) + if (WSAGETSELECTERROR(lParam) != 0) { + closesocket(s); + s = INVALID_SOCKET; return -WSAGETSELECTERROR(lParam); + } switch (WSAGETSELECTEVENT(lParam)) { case FD_READ: @@ -625,8 +640,11 @@ static int telnet_msg (WPARAM wParam, LPARAM lParam) { ret = recv(s, buf, sizeof(buf), 0); if (ret < 0 && WSAGetLastError() == WSAEWOULDBLOCK) return 1; - if (ret < 0) /* any _other_ error */ + if (ret < 0) { /* any _other_ error */ + closesocket(s); + s = INVALID_SOCKET; return -10000-WSAGetLastError(); + } if (ret == 0) { s = INVALID_SOCKET; return 0; @@ -732,7 +750,9 @@ static void telnet_special (Telnet_Special code) { } } -SOCKET telnet_socket(void) { return s; } +static SOCKET telnet_socket(void) { return s; } + +static int telnet_sendok(void) { return 1; } Backend telnet_backend = { telnet_init, @@ -740,5 +760,6 @@ Backend telnet_backend = { telnet_send, telnet_size, telnet_special, - telnet_socket + telnet_socket, + telnet_sendok };