[tor-commits] [orbot/master] Use only a single Snowflake at a time

n8fr8 at torproject.org n8fr8 at torproject.org
Wed Dec 22 21:55:08 UTC 2021


commit be382ada9b1e42e7a8a478fd33ef2d2520bd07ac
Author: Cecylia Bocovich <cohosh at 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);
 
     }
 





More information about the tor-commits mailing list