Author: nextgens
Date: 2007-11-28 15:13:56 +0000 (Wed, 28 Nov 2007)
New Revision: 16011
Modified:
trunk/freenet/src/freenet/node/FNPPacketMangler.java
Log:
Doh... I shouldn't have left that debugging value here
Modified: trunk/freenet/src/freenet/node/FNPPacketMangler.java
===================================================================
--- trunk/freenet/src/freenet/node/FNPPacketMangler.java 2007-11-28
13:49:00 UTC (rev 16010)
+++ trunk/freenet/src/freenet/node/FNPPacketMangler.java 2007-11-28
15:13:56 UTC (rev 16011)
@@ -106,7 +106,7 @@
/** The rekeying interval for the session key (keytrackers) */
public static final int SESSION_KEY_REKEYING_INTERVAL = 60*60*1000;
/** The amount of data sent before we ask for a rekey */
- public static final int AMOUNT_OF_BYTES_ALLOWED_BEFORE_WE_REKEY = 1024
* 1024;
+ public static final int AMOUNT_OF_BYTES_ALLOWED_BEFORE_WE_REKEY = 1024
* 1024 * 1024;
/** The Runnable in charge of rekeying on a regular basis */
private final Runnable transientKeyRekeyer = new Runnable() {
public void run() {