boklm pushed to branch main at The Tor Project / Applications / 
tor-android-service


Commits:
27924bc7 by Cecylia Bocovich at 2022-12-05T11:45:24-05:00
Bug 41361: Add conjure support

- - - - -


1 changed file:

- service/src/main/java/org/torproject/android/service/TorService.java


Changes:

=====================================
service/src/main/java/org/torproject/android/service/TorService.java
=====================================
@@ -377,8 +377,10 @@ public final class TorService extends Service implements 
TorServiceConstants, Or
             if(!pluggableTransportObfs.canExecute()) 
pluggableTransportObfs.setExecutable(true);
             File pluggableTransportSnow = new File(nativeDir, 
"libSnowflake.so");
             if(!pluggableTransportSnow.canExecute()) 
pluggableTransportSnow.setExecutable(true);
+            File pluggableTransportConjure = new File(nativeDir, 
"libConjure.so");
+            if(!pluggableTransportConjure.canExecute()) 
pluggableTransportConjure.setExecutable(true);
 
-            
builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, 
pluggableTransportSnow);
+            
builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, 
pluggableTransportSnow, pluggableTransportConjure);
             mDataService.updateConfigBuilder(builder);
             onionProxyManager.getTorInstaller().updateTorConfigCustom
                     (builder.asString());



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit/27924bc748044e987c188be854ff1471397cdb6a

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit/27924bc748044e987c188be854ff1471397cdb6a
You're receiving this email because of your account on gitlab.torproject.org.


_______________________________________________
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits

Reply via email to