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:
jrandom
2006-04-03 10:07:22 +00:00
committed by zzz
parent 1b3ad31bff
commit 764149aef3
4 changed files with 83 additions and 9 deletions

View File

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