Merge pull request #32 from ghost/patch-1
Start meek transport whe using custom meek bridges
This commit is contained in:
commit
6e45c07c7d
|
@ -1920,7 +1920,7 @@ public class TorService extends VpnService implements TorServiceConstants, Orbot
|
||||||
{
|
{
|
||||||
|
|
||||||
//check if any PT bridges are needed
|
//check if any PT bridges are needed
|
||||||
boolean obfsBridges = bridgeList.contains("obfs3")||bridgeList.contains("obfs4")||bridgeList.contains("scramblesuit")||bridgeList.contains("meek");
|
boolean obfsBridges = bridgeList.contains("obfs3")||bridgeList.contains("obfs4")||bridgeList.contains("scramblesuit");
|
||||||
|
|
||||||
if (obfsBridges)
|
if (obfsBridges)
|
||||||
{
|
{
|
||||||
|
@ -1929,6 +1929,12 @@ public class TorService extends VpnService implements TorServiceConstants, Orbot
|
||||||
extraLines.append("ClientTransportPlugin scramblesuit exec " + OrbotApp.fileObfsclient.getCanonicalPath()).append('\n');
|
extraLines.append("ClientTransportPlugin scramblesuit exec " + OrbotApp.fileObfsclient.getCanonicalPath()).append('\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
boolean meekBridges = bridgeList.contains("meek");
|
||||||
|
if (meekBridges)
|
||||||
|
{
|
||||||
|
extraLines.append("ClientTransportPlugin meek_lite exec " + OrbotApp.fileObfsclient.getCanonicalPath()).append('\n');
|
||||||
|
}
|
||||||
|
|
||||||
String[] bridgeListLines = bridgeList.split("\\r?\\n");
|
String[] bridgeListLines = bridgeList.split("\\r?\\n");
|
||||||
|
|
||||||
for (String bridgeConfigLine : bridgeListLines)
|
for (String bridgeConfigLine : bridgeListLines)
|
||||||
|
|
Loading…
Reference in New Issue