commit be382ada9b1e42e7a8a478fd33ef2d2520bd07ac Author: Cecylia Bocovich cohosh@torproject.org Date: Thu Jun 3 18:01:06 2021 -0400
Use only a single Snowflake at a time
Right now Snowflake can't send client traffic over more than one Snowlake and maintaining a collection of 3 unecessarily increases network traffic for the client and places load on the Snowflake network. --- .../src/main/java/org/torproject/android/service/OrbotService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java b/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java index 5781b564..a1af888b 100644 --- a/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java +++ b/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java @@ -369,7 +369,7 @@ public class OrbotService extends VpnService implements TorServiceConstants, Orb String stunServer = getCdnFront("snowflake-stun");
IPtProxy.startSnowflake(stunServer, target, front, - null, true, false, true, 3); + null, true, false, true, 1);
}
tor-commits@lists.torproject.org