BOB: change default tunnel length to 3 (ticket #1707)

This commit is contained in:
zzz
2015-11-18 22:05:47 +00:00
parent 599989deba
commit 46f42432a2

View File

@@ -247,11 +247,11 @@ public class BOB implements Runnable, ClientApp {
save = true;
}
if (!props.containsKey("inbound.length")) {
props.setProperty("inbound.length", "1");
props.setProperty("inbound.length", "3");
save = true;
}
if (!props.containsKey("outbound.length")) {
props.setProperty("outbound.length", "1");
props.setProperty("outbound.length", "3");
save = true;
}
if (!props.containsKey("inbound.lengthVariance")) {