I found the following code in the code of an SMTP mail server (LumiSoft Mail Server). According to the method's name, it test whether the platform supports I/O Completion Ports.
/// <summary>
/// Gets if IO completion ports supported by OS.
/// </summary>
/// <returns></returns>
public static bool IsIoCompletionPortsSupported()
{
Socket s = new Socket(AddressFamily.InterNetwork,SocketType.Dgram,ProtocolType.Udp);
try{
SocketAsyncEventArgs e = new SocketAsyncEventArgs();
e.SetBuffer(new byte[0],0,0);
e.RemoteEndPoint = new IPEndPoint(IPAddress.Loopback,111);
s.SendToAsync(e)
return true;
}
catch(NotSupportedException nX){
string dummy = nX.Message;
return false;
}
finally{
s.Close();
}
}
It seems to work fine but fails on Mono/Linux. The method SendToAsync, like its name says, executes asynchronously. It even executes in another thread. However, when it starts to execute, the finally part of this method already closed the socket and causes an ObjectDisposedException in the other thread.
So, is an incorrect technique to test for IOCP suppport? Why does it work on Windows? What is the proper way to test for IOCP support?
epoll(), not IOCP. – J-16 SDiZ Nov 22 '10 at 4:39