On 09.02.2010 20:56, Oriol de San Pedro wrote: > Hi, > > Any mono application running on Linux (this doesn't happen on Mono Windows > or NET Framework) issues a "System.Net.Sockets.SocketException: Too many > open files" when handling more than 1020 sockets at once.
Well, the default max count of open file descriptors in Linux is usually 1024. Now try to correlate this fact with the count of your sockets used at once :) You can raise the count with "ulimit -n max-count". Robert _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
