forked from I2P_Developers/i2p.i2p
i2ptunnel: Fix Socks and SocksIRC tunnels not starting,
broken in fix for ticket #815
This commit is contained in:
@@ -42,11 +42,6 @@ public class I2PSOCKSTunnel extends I2PTunnelClientBase {
|
||||
public I2PSOCKSTunnel(int localPort, Logging l, boolean ownDest, EventDispatcher notifyThis, I2PTunnel tunnel, String pkf) {
|
||||
super(localPort, ownDest, l, notifyThis, "SOCKS Proxy on " + tunnel.listenHost + ':' + localPort, tunnel, pkf);
|
||||
|
||||
if (waitEventValue("openBaseClientResult").equals("error")) {
|
||||
notifyEvent("openSOCKSTunnelResult", "error");
|
||||
return;
|
||||
}
|
||||
|
||||
setName("SOCKS Proxy on " + tunnel.listenHost + ':' + localPort);
|
||||
parseOptions();
|
||||
notifyEvent("openSOCKSTunnelResult", "ok");
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2015-04-24 zzz
|
||||
* i2ptunnel: Fix Socks and SocksIRC tunnels not starting
|
||||
|
||||
2015-04-23 zzz
|
||||
* Streaming:
|
||||
- Reduce min RTO for quicker recovery after packet loss
|
||||
- Reduce default initial ack delay
|
||||
- More efficient checking for input buffer overflow
|
||||
|
||||
2015-04-22 zzz
|
||||
* i2psnark: Fix deletion of config files, cleanup old ones (ticket #1498)
|
||||
* I2PSocketEepGet: Fix i2psnark NPE caused by -6 (ticket #1543)
|
||||
|
||||
@@ -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 = 7;
|
||||
public final static long BUILD = 8;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
||||
Reference in New Issue
Block a user