Upped chunk size to 16kb (down not working)

This commit is contained in:
Niklas Jensen
2026-01-15 23:03:24 +01:00
committed by Rune Harlyk
parent d00e7bc92d
commit 1b6ffc4641
4 changed files with 17 additions and 4 deletions
+2 -1
View File
@@ -5,7 +5,8 @@
#include <map>
#include <string>
#define FS_MAX_CHUNK_SIZE 1024
// Make sure that this aligns with socket_message.FSDownloadChunkResponse.data max_size (and for the corresponsing request)
#define FS_MAX_CHUNK_SIZE 2**14 // ~= 16 kb
#define FS_TRANSFER_TIMEOUT 30000 // 30 seconds
namespace FileSystemWS {