forked from I2P_Developers/i2p.i2p
0.9.5
This commit is contained in:
@@ -67,7 +67,7 @@ public class DeliveryInstructions extends DataStructureImpl {
|
||||
public boolean getEncrypted() { return _encrypted; }
|
||||
|
||||
/**
|
||||
* For cloves only (not tunnels), default null, unused
|
||||
* For cloves only (not tunnels), default false, unused
|
||||
* @deprecated unused
|
||||
*/
|
||||
public void setEncrypted(boolean encrypted) { _encrypted = encrypted; }
|
||||
@@ -79,7 +79,7 @@ public class DeliveryInstructions extends DataStructureImpl {
|
||||
public SessionKey getEncryptionKey() { return _encryptionKey; }
|
||||
|
||||
/**
|
||||
* For cloves only (not tunnels), default false, unused
|
||||
* For cloves only (not tunnels), default null, unused
|
||||
* @deprecated unused
|
||||
*/
|
||||
public void setEncryptionKey(SessionKey key) { _encryptionKey = key; }
|
||||
|
||||
@@ -132,7 +132,7 @@ public class JobQueue {
|
||||
"How many jobs do we drop due to insane overload?",
|
||||
"JobQueue",
|
||||
new long[] { 60*1000l, 60*60*1000l, 24*60*60*1000l });
|
||||
// following are for JobQueue
|
||||
// following are for JobQueueRunner
|
||||
_context.statManager().createRateStat("jobQueue.jobRun", "How long jobs take", "JobQueue", new long[] { 60*60*1000l, 24*60*60*1000l });
|
||||
_context.statManager().createRateStat("jobQueue.jobRunSlow", "How long jobs that take over a second take", "JobQueue", new long[] { 60*60*1000l, 24*60*60*1000l });
|
||||
_context.statManager().createRequiredRateStat("jobQueue.jobLag", "Job run delay (ms)", "JobQueue", new long[] { 60*1000l, 60*60*1000l, 24*60*60*1000l });
|
||||
|
||||
@@ -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 = 12;
|
||||
public final static long BUILD = 0;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
||||
Reference in New Issue
Block a user