fix: Fixes blocking sockets (#1191)

This commit is contained in:
Kamron Batman 2022-10-15 22:23:34 -07:00 committed by GitHub
parent 53ebc66a93
commit 3396338926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,10 @@ public static class TcpServer
{
LingerState = new LingerOption(false, 0),
ExclusiveAddressUse = true,
NoDelay = true
NoDelay = true,
Blocking = false,
SendBufferSize = 64 * 1024,
ReceiveBufferSize = 64 * 1024
};
try