forked from I2P_Developers/i2p.i2p
* i2ptunnel HTTP Proxy: Fix default enable for outproxy plugin
This commit is contained in:
@@ -701,7 +701,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn
|
||||
s.close();
|
||||
return;
|
||||
} else if(host.contains(".") || host.startsWith("[")) {
|
||||
if (Boolean.parseBoolean(getTunnel().getClientOptions().getProperty(PROP_USE_OUTPROXY_PLUGIN))) {
|
||||
if (Boolean.parseBoolean(getTunnel().getClientOptions().getProperty(PROP_USE_OUTPROXY_PLUGIN, "true"))) {
|
||||
ClientAppManager mgr = _context.clientAppManager();
|
||||
if (mgr != null) {
|
||||
ClientApp op = mgr.getRegisteredApp(Outproxy.NAME);
|
||||
|
@@ -1,3 +1,6 @@
|
||||
2014-01-27 zzz
|
||||
* i2ptunnel HTTP Proxy: Fix default enable for outproxy plugin
|
||||
|
||||
2014-01-25 zzz
|
||||
* i2psnark: Lower threshold for auto-stop
|
||||
* i2ptunnel HTTP Proxy:
|
||||
|
@@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 3;
|
||||
public final static long BUILD = 4;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user