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

This commit is contained in:
Jeff Latimer 2012-04-01 18:23:17 +10:00 committed by Alexandre Julliard
parent 9f6ce27ede
commit a84f7204af
1 changed files with 3 additions and 0 deletions

View File

@ -4298,6 +4298,9 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
case WS_IPV6_DONTFRAG: case WS_IPV6_DONTFRAG:
FIXME("IPV6_DONTFRAG is silently ignored!\n"); FIXME("IPV6_DONTFRAG is silently ignored!\n");
return 0; return 0;
case WS_IPV6_PROTECTION_LEVEL:
FIXME("IPV6_PROTECTION_LEVEL is ignored!\n");
return 0;
default: default:
FIXME("Unknown IPPROTO_IPV6 optname 0x%08x\n", optname); FIXME("Unknown IPPROTO_IPV6 optname 0x%08x\n", optname);
return SOCKET_ERROR; return SOCKET_ERROR;