Skip to content
Snippets Groups Projects
Commit c1469797 authored by akwizgran's avatar akwizgran
Browse files

Upgraded Tor to 0.2.5.10 with OpenSSL 1.0.2.

parent 4fcc3092
No related branches found
No related tags found
No related merge requests found
File moved
File deleted
File added
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment