[tbb-commits] [Git][tpo/applications/tor-android-service][main] Bug 40800: Add WebTunnel support
boklm (@boklm)
git at gitlab.torproject.org
Thu Mar 2 13:54:25 UTC 2023
boklm pushed to branch main at The Tor Project / Applications / tor-android-service
Commits:
0438a9a4 by Shelikhoo at 2023-03-02T13:11:36+00:00
Bug 40800: Add WebTunnel 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
=====================================
@@ -379,8 +379,10 @@ public final class TorService extends Service implements TorServiceConstants, Or
if(!pluggableTransportSnow.canExecute()) pluggableTransportSnow.setExecutable(true);
File pluggableTransportConjure = new File(nativeDir, "libConjure.so");
if(!pluggableTransportConjure.canExecute()) pluggableTransportConjure.setExecutable(true);
+ File pluggableTransportWebtunnel = new File(nativeDir, "libWebtunnel.so");
+ if(!pluggableTransportWebtunnel.canExecute()) pluggableTransportWebtunnel.setExecutable(true);
- builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow, pluggableTransportConjure);
+ builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow, pluggableTransportConjure, pluggableTransportWebtunnel);
mDataService.updateConfigBuilder(builder);
onionProxyManager.getTorInstaller().updateTorConfigCustom
(builder.asString());
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit/0438a9a4ce1548be08dd2df891a38987bb313d22
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit/0438a9a4ce1548be08dd2df891a38987bb313d22
You're receiving this email because of your account on gitlab.torproject.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.torproject.org/pipermail/tbb-commits/attachments/20230302/d61026be/attachment.htm>
More information about the tbb-commits
mailing list