Closed QTPah closed 1 year ago
Thanks for catching this. Just published v3.0.9 here https://www.nuget.org/packages/SuperSimpleTcp/3.0.9 and the commit is here https://github.com/jchristn/SuperSimpleTcp/commit/8d73e2ff1b08a0981eb9f425af3e3f1ddea7093a. Also added you to the README!
While i can disable the nagle algorithm on the client side with
client.Settings.NoDelay = true
it's not possible on the listener. In the default C# TCP library the option is accessible throughlistener.Server.DoDelay
and for clientclient.NoDelay
. Please add theNoDelay
setting for the listener too.