jchristn / SuperSimpleTcp

Simple wrapper for TCP client and server in C# with SSL support
MIT License
459 stars 95 forks source link

NoDelay option for listener #180

Closed QTPah closed 1 year ago

QTPah commented 1 year ago

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 through listener.Server.DoDelay and for client client.NoDelay. Please add the NoDelay setting for the listener too.

jchristn commented 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!