ws2_32: Implement SO_UPDATE_ACCEPT_CONTEXT.
This commit is contained in:
parent
008c0597c8
commit
f138a5724d
|
@ -3941,6 +3941,12 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
|
|||
TRACE("Ignoring SO_UPDATE_CONNECT_CONTEXT, since our sockets are normal\n");
|
||||
return 0;
|
||||
|
||||
/* After a AcceptEx call succeeds, the socket can't be used with half of the
|
||||
* normal winsock functions on windows. We don't have that problem. */
|
||||
case WS_SO_UPDATE_ACCEPT_CONTEXT:
|
||||
TRACE("Ignoring SO_UPDATE_ACCEPT_CONTEXT, since our sockets are normal\n");
|
||||
return 0;
|
||||
|
||||
/* SO_OPENTYPE does not require a valid socket handle. */
|
||||
case WS_SO_OPENTYPE:
|
||||
if (!optlen || optlen < sizeof(int) || !optval)
|
||||
|
|
Loading…
Reference in New Issue