ws2_32: SO_DONTROUTE is ignored on windows, fix comment and downgrade FIXME to TRACE.
This commit is contained in:
parent
8e7b2e0fd7
commit
516a575a86
|
@ -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
|
/* 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
|
* socket. According to MSDN, this option is silently ignored.*/
|
||||||
* windows (but it works in linux and therefore prevents the game from
|
|
||||||
* finding games outside the current network) */
|
|
||||||
if ( level==WS_SOL_SOCKET && optname==WS_SO_DONTROUTE )
|
if ( level==WS_SOL_SOCKET && optname==WS_SO_DONTROUTE )
|
||||||
{
|
{
|
||||||
FIXME("Does windows ignore SO_DONTROUTE?\n");
|
TRACE("Ignoring SO_DONTROUTE.\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue