1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-14 18:02:58 +00:00

Increased receive buffer, added symbol order book check

This commit is contained in:
Jkorf
2021-09-29 16:27:27 +02:00
parent a24c7e008f
commit 07e2a98685
3 changed files with 4 additions and 146 deletions
@@ -444,7 +444,7 @@ namespace CryptoExchange.Net.Sockets
{
_startedReceive = true;
var buffer = new ArraySegment<byte>(new byte[4096]);
var buffer = new ArraySegment<byte>(new byte[65536]);
var received = 0;
while (true)
{