Commit 00689acf authored by sammenard's avatar sammenard

Fix an issue where SetFastLoopbackOption throws throws a SocketException...

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