Tagged Questions
3
votes
2answers
731 views
Mono and C# IOCP: Is it a good idea?
I'm porting a c++ app to c# that uses IOCP on it's server.
Can mono handle IOCP as well as windows? will i get comparable performance to c++ or i should try something else?
thanks
1
vote
2answers
444 views
.NET IOCP ThreadPool overhead with async UDP operations
I have developed a VoIP media server which exchanges RTP packets with remote SIP endpoints. It needs to scale well - and while I was initially concerned that my C# implementation would not come close ...
1
vote
1answer
329 views
Test for I/O Completion Port Support
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>
...
0
votes
1answer
696 views
Using SslStream with IOCP
I have written a TCP server using the Socket class's asynchronous/IOCP methods, BeginSend()/BeginRead()/etc. I would like to add SSL capability using SslStream, but from the interface it looks like ...