[Mono-list] SocketOptionName.NoDelay question

Dick Porter dick@ximian.com
29 Aug 2003 11:28:41 +0100


On Thu, 2003-08-28 at 22:34, Carlos Guzman Alvarez wrote:
> Hello:
> 
> I'm making some test with the new version of my Firebird .NET Data 
> provider with mono on linux and i'm having one problem with socket 
> connection, if i disable the Nagle algorithm ( SocketOptionName.NoDelay 
> ) of the socket i can't connect but if i comment this code i can connect 
> ok, is this the correct behavior ??, this is working ok with Windows and 
> MS.NET but i'm not sure if this can be an OS related issue.

The socket handling does minimal processing before handing the socket
options to the OS.

- Dick