Commit c4eb409b authored by Marc Gravell's avatar Marc Gravell

Merge pull request #332 from sammenard/CoreCLR

Fix an issue where SetFastLoopbackOption throws throws a SocketException instead of a PlatformNotSupportedException on Win 2008 R2
parents 7cc58d30 00689acf
...@@ -264,6 +264,9 @@ internal void SetFastLoopbackOption(Socket socket) ...@@ -264,6 +264,9 @@ internal void SetFastLoopbackOption(Socket socket)
catch (PlatformNotSupportedException) catch (PlatformNotSupportedException)
{ {
} }
catch (SocketException)
{
}
#endif #endif
} }
......
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