sets the default piece length to be 256KiB

This commit is contained in:
Marcin Czenko 2025-03-14 16:27:12 +01:00
parent 93befc9dac
commit 42f4aa21b9
No known key found for this signature in database
GPG Key ID: 33DEA0C8E30937C0

View File

@ -25,7 +25,8 @@ export tables
const
# BitTorrent specific
DefaultPieceLength* = NBytes 1024 * 64
# DefaultPieceLength* = NBytes 1024 * 1024 * 4 # 4MiB
DefaultPieceLength* = NBytes 1024 * 256 # 256KiB
BitTorrentBlockSize* = NBytes 1024 * 16
# Size of blocks for storage / network exchange,