Allow proxying to nonce2 size 3 pools with a warning

This commit is contained in:
Con Kolivas 2014-10-16 09:01:14 +11:00
parent 71cdbfa560
commit 7ffe4fbe18

View File

@ -559,7 +559,9 @@ static bool parse_subscribe(connsock_t *cs, proxy_instance_t *proxi)
LOGWARNING("Invalid nonce2len %d in parse_subscribe", size);
goto out;
}
if (size < 4) {
if (size == 3)
LOGWARNING("Nonce2 length %d means proxied clients can't be >5TH each", size);
else if (size < 3) {
LOGWARNING("Nonce2 length %d too small to be able to proxy", size);
goto out;
}