fix: Fixes blocking sockets (#1191)
This commit is contained in:
parent
53ebc66a93
commit
3396338926
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue