Raise full data chunk size limit

This commit is contained in:
s809
2024-07-16 23:56:48 +05:00
parent 3723137fea
commit 0e904a388c
@@ -57,7 +57,7 @@ import java.util.function.Consumer;
public class DhServerLevel extends AbstractDhLevel implements IDhServerLevel
{
private static final Logger LOGGER = DhLoggerBuilder.getLogger();
public static final int FULL_DATA_CHUNK_SIZE = 32766;
public static final int FULL_DATA_CHUNK_SIZE = 1048000; // 576 bytes left for other contents
public final ServerLevelModule serverside;
private final IServerLevelWrapper serverLevelWrapper;