forked from I2P_Developers/i2p.i2p
2006-04-01 jrandom
* Take out the router watchdog's teeth (don't restart on leaseset failure) * Filter the IRC ping/pong messages, as some clients send unsafe information in them (thanks aardvax and dust!)
This commit is contained in:
@ -326,7 +326,9 @@ public abstract class I2NPMessageImpl extends DataStructureImpl implements I2NPM
|
||||
}
|
||||
}
|
||||
|
||||
protected void verifyUnwritten() { if (_written) throw new RuntimeException("Already written"); }
|
||||
protected void verifyUnwritten() {
|
||||
// if (_written) throw new RuntimeException("Already written");
|
||||
}
|
||||
protected void written() { _written = true; }
|
||||
protected void read() { _read = true; }
|
||||
|
||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.382 $ $Date: 2006/03/30 02:26:49 $";
|
||||
public final static String ID = "$Revision: 1.383 $ $Date: 2006/04/01 14:08:41 $";
|
||||
public final static String VERSION = "0.6.1.13";
|
||||
public final static long BUILD = 2;
|
||||
public final static long BUILD = 3;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
Reference in New Issue
Block a user