Commit a84f7204 authored by Jeff Latimer's avatar Jeff Latimer Committed by Alexandre Julliard

ws2_32: Make a common fixme more meaningful and return success.

parent 9f6ce27e
......@@ -4298,6 +4298,9 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
case WS_IPV6_DONTFRAG:
FIXME("IPV6_DONTFRAG is silently ignored!\n");
return 0;
case WS_IPV6_PROTECTION_LEVEL:
FIXME("IPV6_PROTECTION_LEVEL is ignored!\n");
return 0;
default:
FIXME("Unknown IPPROTO_IPV6 optname 0x%08x\n", optname);
return SOCKET_ERROR;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment