mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[MSAFD] Make WSPSetSockOpt() SO_RCVBUF stub return success
This commit is contained in:
parent
81727760e4
commit
f6c50cb93d
1 changed files with 11 additions and 0 deletions
|
@ -2870,6 +2870,17 @@ WSPSetSockOpt(
|
|||
ERR("Setting send buf to %x is not implemented yet\n", optval);
|
||||
return NO_ERROR;
|
||||
|
||||
case SO_RCVBUF:
|
||||
if (optlen < sizeof(DWORD))
|
||||
{
|
||||
if (lpErrno) *lpErrno = WSAEFAULT;
|
||||
return SOCKET_ERROR;
|
||||
}
|
||||
|
||||
/* TODO: The total per-socket buffer space reserved for receives */
|
||||
ERR("Setting receive buf to %x is not implemented yet\n", optval);
|
||||
return NO_ERROR;
|
||||
|
||||
case SO_ERROR:
|
||||
if (optlen < sizeof(INT))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue