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:
zzz
2015-04-11 19:34:34 +00:00
parent 69a0324e86
commit dd265bbd54
23 changed files with 47 additions and 26 deletions

View File

@ -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;
}

View File

@ -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);

View File

@ -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;