Changeset c58fd8f
- Timestamp:
- May 30, 2015 3:46:37 PM (6 years ago)
- Branches:
- master
- Children:
- 4521156
- Parents:
- 3602f734
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2ptunnel/java/src/net/i2p/i2ptunnel/ui/TunnelConfig.java
r3602f734 rc58fd8f 48 48 private int _tunnelDepth = -1; 49 49 private int _tunnelQuantity = -1; 50 private int _tunnelVariance = -1; 50 // -2 or higher is valid 51 private int _tunnelVariance = -3; 51 52 private int _tunnelBackupQuantity = -1; 52 53 private boolean _connectDelay; … … 802 803 config.setProperty("option.outbound.length", Integer.toString(_tunnelDepth)); 803 804 } 804 if (_tunnelVariance >= 0) {805 if (_tunnelVariance >= -2) { 805 806 config.setProperty("option.inbound.lengthVariance", Integer.toString(_tunnelVariance)); 806 807 config.setProperty("option.outbound.lengthVariance", Integer.toString(_tunnelVariance)); -
history.txt
r3602f734 rc58fd8f 1 2015-05-30 zzz 2 * i2ptunnel: Fix +/- variance config (ticket #1587) 3 1 4 2015-05-29 zzz 2 5 * HTTP client: Fix occasional truncation of compressed responses -
router/java/src/net/i2p/router/RouterVersion.java
r3602f734 rc58fd8f 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 3 2;21 public final static long BUILD = 33; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.