ws2_32: SO_DONTROUTE is ignored on windows, fix comment and downgrade FIXME to TRACE.

oldstable
Kai Blin 2006-11-30 12:31:40 +01:00 committed by Alexandre Julliard
parent 8e7b2e0fd7
commit 516a575a86
1 changed files with 2 additions and 4 deletions

View File

@ -2722,12 +2722,10 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
}
/* For some reason the game GrandPrixLegends does set SO_DONTROUTE on its
* socket. This will either not happen under windows or it is ignored in
* windows (but it works in linux and therefore prevents the game from
* finding games outside the current network) */
* socket. According to MSDN, this option is silently ignored.*/
if ( level==WS_SOL_SOCKET && optname==WS_SO_DONTROUTE )
{
FIXME("Does windows ignore SO_DONTROUTE?\n");
TRACE("Ignoring SO_DONTROUTE.\n");
return 0;
}