mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
Upgraded Tor to 0.2.5.10 with OpenSSL 1.0.2.
This commit is contained in:
Binary file not shown.
BIN
briar-android/assets/tor.zip
Normal file
BIN
briar-android/assets/tor.zip
Normal file
Binary file not shown.
@@ -266,14 +266,14 @@ class TorPlugin implements DuplexPlugin, EventHandler {
|
||||
}
|
||||
|
||||
private InputStream getTorInputStream() throws IOException {
|
||||
InputStream in = appContext.getResources().getAssets().open("tor");
|
||||
InputStream in = appContext.getResources().getAssets().open("tor.zip");
|
||||
ZipInputStream zin = new ZipInputStream(in);
|
||||
if(zin.getNextEntry() == null) throw new IOException();
|
||||
return zin;
|
||||
}
|
||||
|
||||
private InputStream getGeoIpInputStream() throws IOException {
|
||||
InputStream in = appContext.getResources().getAssets().open("geoip");
|
||||
InputStream in = appContext.getResources().getAssets().open("geoip.zip");
|
||||
ZipInputStream zin = new ZipInputStream(in);
|
||||
if(zin.getNextEntry() == null) throw new IOException();
|
||||
return zin;
|
||||
|
||||
Reference in New Issue
Block a user