round to 188 byte packet size

This commit is contained in:
jb-alvarado 2020-05-09 21:27:08 +02:00
parent acb8ec4c19
commit 26b4c97941

View File

@ -37,7 +37,7 @@ except ImportError:
print('colorama import failed, no colored console output on windows...')
_WINDOWS = os.name == 'nt'
COPY_BUFSIZE = 1024 * 1024 if _WINDOWS else 64 * 1024
COPY_BUFSIZE = 1024 * 1024 if _WINDOWS else 65424
# ------------------------------------------------------------------------------