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
1 changed file:
Changes:
| ... | ... | @@ -377,8 +377,10 @@ public final class TorService extends Service implements TorServiceConstants, Or |
| 377 | 377 | if(!pluggableTransportObfs.canExecute()) pluggableTransportObfs.setExecutable(true);
|
| 378 | 378 | File pluggableTransportSnow = new File(nativeDir, "libSnowflake.so");
|
| 379 | 379 | if(!pluggableTransportSnow.canExecute()) pluggableTransportSnow.setExecutable(true);
|
| 380 | + File pluggableTransportConjure = new File(nativeDir, "libConjure.so");
|
|
| 381 | + if(!pluggableTransportConjure.canExecute()) pluggableTransportConjure.setExecutable(true);
|
|
| 380 | 382 | |
| 381 | - builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow);
|
|
| 383 | + builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow, pluggableTransportConjure);
|
|
| 382 | 384 | mDataService.updateConfigBuilder(builder);
|
| 383 | 385 | onionProxyManager.getTorInstaller().updateTorConfigCustom
|
| 384 | 386 | (builder.asString());
|