I would like use .NET 4.5 ClientWebSocket (http://msdn.microsoft.com/en-us/library/system.net.websockets.clientwebsocket%28v=vs.110%29.aspx), but Wireshark reveals, that Nagle's algorithm is turned on, which is a pain in the neck. Can anybody tell me how to reach ClientWebSocket's Socket.NoDelay property? Even a hack would be appreciated...
Asked
Active
Viewed 843 times
7
-
You can take a look at the [source](http://referencesource.microsoft.com/#System/net/System/Net/WebSockets/ClientWebSocket.cs) but I'm not sure how much luck you will have. – Daniel Kelley Sep 15 '14 at 15:25
-
I have tried it, with no luck... I couldn't figure out, where the socket is hidden. Maybe anyone has spotted it? – x y Sep 16 '14 at 09:21
-
@xy Any luck in your experiments? Last resort brute force solution might be turning of Nagle in windows registry. – Jan Feb 01 '16 at 16:10