Compare commits

...

2 Commits

Author SHA1 Message Date
ed
ab09927e7b v0.10.12 2021-04-19 21:58:49 +02:00
ed
779437db67 up2k: more runahead 2021-04-19 21:58:30 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (0, 10, 11)
VERSION = (0, 10, 12)
CODENAME = "zip it"
BUILD_DT = (2021, 4, 19)

View File

@@ -740,7 +740,7 @@ function up2k_init(have_crypto) {
function hashing_permitted() {
if (multitask) {
var ahead = st.bytes.hashed - st.bytes.uploaded;
return ahead < 1024 * 1024 * 128 &&
return ahead < 1024 * 1024 * 1024 * 4 &&
st.todo.handshake.length + st.busy.handshake.length < 16;
}
return handshakes_permitted() && 0 ==