From cace40a81818a82979f5eeb5f7fd800686a11e14 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 28 Jul 2020 23:37:05 +0300 Subject: [PATCH] Update Program.cs --- ConnectionTest/Client/Program.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ConnectionTest/Client/Program.cs b/ConnectionTest/Client/Program.cs index 7a2aedc..3af740d 100644 --- a/ConnectionTest/Client/Program.cs +++ b/ConnectionTest/Client/Program.cs @@ -1,6 +1,5 @@ using System; using System.Net; -using System.Threading; using ZeroLevel; using ZeroLevel.Network; using ZeroLevel.Services.HashFunctions; @@ -67,7 +66,7 @@ namespace Client var port = ReadPort(); var client = ex.GetConnection(new IPEndPoint(address, port)); - uint index = 0; + uint index = 623; while (true) { if (Console.KeyAvailable) @@ -81,11 +80,11 @@ namespace Client } if (index % 2 == 0) { - SendDataEqParts(client, index, 1024 * 1024 + index * 3 + 1); + SendDataEqParts(client, index, 1024 * 1024 + index * 30 + 1); } else { - SendDataDiffParts(client, index, 1024 * 1024 + index * 3 + 1); + SendDataDiffParts(client, index, 1024 * 1024 + index * 30 + 1); } index++; }