forked from I2P_Developers/i2p.i2p
i2ptunnel: Fix stopping tunnel on bad args when starting,
broken by new state code
This commit is contained in:
@ -580,7 +580,7 @@ public class TunnelController implements Logging {
|
|||||||
*/
|
*/
|
||||||
public void stopTunnel() {
|
public void stopTunnel() {
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
if (_state != TunnelState.RUNNING)
|
if (_state != TunnelState.STARTING && _state != TunnelState.RUNNING)
|
||||||
return;
|
return;
|
||||||
changeState(TunnelState.STOPPING);
|
changeState(TunnelState.STOPPING);
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2015-04-03 zzz
|
||||||
|
* i2ptunnel: Fix stopping tunnel on bad args when starting
|
||||||
|
* wrapper.config: Remove old mortbay Jetty parameters
|
||||||
|
|
||||||
2015-04-01 zzz
|
2015-04-01 zzz
|
||||||
* I2CP: Allow larger client clock skew (ticket #1503)
|
* I2CP: Allow larger client clock skew (ticket #1503)
|
||||||
* i2psnark: Fix changing data directory on Windows (ticket #1503)
|
* i2psnark: Fix changing data directory on Windows (ticket #1503)
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 15;
|
public final static long BUILD = 16;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "-rc";
|
public final static String EXTRA = "-rc";
|
||||||
|
Reference in New Issue
Block a user