Dodano dodatkową opcję w przypadku podzielenia danych na chunki bez kompresji i szyfrowania

This commit is contained in:
yanczi 2025-11-16 10:08:11 +01:00
parent 45b2f823c6
commit b066f6ada5
2 changed files with 8 additions and 0 deletions

View file

@ -206,6 +206,10 @@ void CreateCargo::computingBytes(const int16_t& flag, std::vector<char>& input,
output = cm.chunked(input, true, true);
break;
case 4:
output = cm.chunked(input, false, false);
break;
default:
output = std::move(input);
break;