X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/c91409da0ac0d3fb4a225ab85e14370514e4094e..1ad4eb6f9759497ffaa46a0ed7c46f9fcf53e8e4:/winnet.c?ds=inline diff --git a/winnet.c b/winnet.c index 53a40e81..86028021 100644 --- a/winnet.c +++ b/winnet.c @@ -62,7 +62,7 @@ struct Socket_tag { void *private_ptr; struct buffer *head, *tail; int writable; - int in_oob, sending_oob; + int sending_oob; }; struct SockAddr_tag { @@ -308,7 +308,6 @@ Socket sk_new(SockAddr addr, int port, int privport, sk_receiver_t receiver) { ret->receiver = receiver; ret->head = ret->tail = NULL; ret->writable = 1; /* to start with */ - ret->in_oob = FALSE; ret->sending_oob = 0; /* @@ -322,6 +321,10 @@ Socket sk_new(SockAddr addr, int port, int privport, sk_receiver_t receiver) { ret->error = winsock_error_string(err); return ret; } + { + BOOL b = TRUE; + setsockopt (s, SOL_SOCKET, SO_OOBINLINE, (void *)&b, sizeof(b)); + } /* * Bind to local address. @@ -423,6 +426,8 @@ Socket sk_new(SockAddr addr, int port, int privport, sk_receiver_t receiver) { } void sk_close(Socket s) { + extern char *do_select(SOCKET skt, int startup); + del234(sktree, s); do_select(s->s, 0); closesocket(s->s); @@ -567,13 +572,23 @@ int select_result(WPARAM wParam, LPARAM lParam) { return 1; /* boggle */ if ((err = WSAGETSELECTERROR(lParam)) != 0) { - fatalbox(winsock_error_string(err)); + /* + * An error has occurred on this socket. Pass it to the + * receiver function. + */ + return s->receiver(s, 3, winsock_error_string(err), err); } noise_ultralight(lParam); switch (WSAGETSELECTEVENT(lParam)) { case FD_READ: + atmark = 1; + /* Some WinSock wrappers don't support this call, so we + * deliberately don't check the return value. If the call + * fails and does nothing, we will get back atmark==1, + * which is good enough to keep going at least. */ + ioctlsocket(s->s, SIOCATMARK, &atmark); ret = recv(s->s, buf, sizeof(buf), 0); if (ret < 0) { err = WSAGetLastError(); @@ -582,10 +597,13 @@ int select_result(WPARAM wParam, LPARAM lParam) { } } if (ret < 0) { - fatalbox(winsock_error_string(err)); + return s->receiver(s, 3, winsock_error_string(err), err); } else { - int type = s->in_oob ? 2 : 0; - s->in_oob = FALSE; + int type = 0; + if (atmark==0) { + ioctlsocket(s->s, SIOCATMARK, &atmark); + if(atmark) type = 2; else type = 1; + } return s->receiver(s, type, buf, ret); } break; @@ -594,20 +612,13 @@ int select_result(WPARAM wParam, LPARAM lParam) { * Read all data up to the OOB marker, and send it to the * receiver with urgent==1 (OOB pending). */ - atmark = 1; - s->in_oob = TRUE; - /* Some WinSock wrappers don't support this call, so we - * deliberately don't check the return value. If the call - * fails and does nothing, we will get back atmark==1, - * which is good enough to keep going at least. */ - ioctlsocket(s->s, SIOCATMARK, &atmark); ret = recv(s->s, buf, sizeof(buf), MSG_OOB); noise_ultralight(ret); if (ret <= 0) { fatalbox(ret == 0 ? "Internal networking trouble" : winsock_error_string(WSAGetLastError())); } else { - return s->receiver(s, atmark ? 2 : 1, buf, ret); + return s->receiver(s, 2, buf, ret); } break; case FD_WRITE: