forked from I2P_Developers/i2p.i2p
Updates after review:
Remove meeh.i2p as update host (ticket #1515) Re-add 193.xxx https reseed Fix SocketManagerFactory property handling Restore UPnP locale fix lost in the merge i2ptunnel finals I2NP unique id fixes duplicate done() in ReseedChecker bigger langbox in CSS reformatting Javadocs
This commit is contained in:
@ -44,6 +44,7 @@ public class TunnelController implements Logging {
|
||||
private List<I2PSession> _sessions;
|
||||
private volatile TunnelState _state;
|
||||
|
||||
/** @since 0.9.19 */
|
||||
private enum TunnelState {
|
||||
START_ON_LOAD,
|
||||
STARTING,
|
||||
@ -849,6 +850,7 @@ public class TunnelController implements Logging {
|
||||
return true;
|
||||
}
|
||||
|
||||
/** @since 0.9.19 */
|
||||
private synchronized void changeState(TunnelState state) {
|
||||
_state = state;
|
||||
}
|
||||
|
@ -44,8 +44,8 @@ public class GeneralHelper {
|
||||
|
||||
private static final String OPT = TunnelController.PFX_OPTION;
|
||||
|
||||
private I2PAppContext _context;
|
||||
protected TunnelControllerGroup _group;
|
||||
private final I2PAppContext _context;
|
||||
protected final TunnelControllerGroup _group;
|
||||
|
||||
public GeneralHelper(TunnelControllerGroup tcg) {
|
||||
this(I2PAppContext.getGlobalContext(), tcg);
|
||||
|
@ -53,7 +53,7 @@ public class IndexBean {
|
||||
private String _curNonce;
|
||||
//private long _nextNonce;
|
||||
|
||||
private TunnelConfig _config;
|
||||
private final TunnelConfig _config;
|
||||
private boolean _removeConfirmed;
|
||||
private int _hashCashValue;
|
||||
private int _certType;
|
||||
|
Reference in New Issue
Block a user