2006-08-21 Complication
* Fix error reporting discrepancy (thanks for helping notice, yojoe!)
This commit is contained in:
@ -86,7 +86,7 @@ public class RouterIdentity extends DataStructureImpl {
|
||||
|
||||
public void writeBytes(OutputStream out) throws DataFormatException, IOException {
|
||||
if ((_certificate == null) || (_publicKey == null) || (_signingKey == null))
|
||||
throw new DataFormatException("Not enough data to format the destination");
|
||||
throw new DataFormatException("Not enough data to format the router identity");
|
||||
_publicKey.writeBytes(out);
|
||||
_signingKey.writeBytes(out);
|
||||
_certificate.writeBytes(out);
|
||||
|
@ -1,4 +1,7 @@
|
||||
$Id: history.txt,v 1.504 2006-07-30 00:08:20 complication Exp $
|
||||
$Id: history.txt,v 1.505 2006-08-03 17:34:25 jrandom Exp $
|
||||
|
||||
2006-08-21 Complication
|
||||
* Fix error reporting discrepancy (thanks for helping notice, yojoe!)
|
||||
|
||||
2006-08-03 jrandom
|
||||
* Decrease the recently modified tunnel building timeout, though keep
|
||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.444 $ $Date: 2006-07-31 21:26:56 $";
|
||||
public final static String ID = "$Revision: 1.445 $ $Date: 2006-08-03 17:34:26 $";
|
||||
public final static String VERSION = "0.6.1.24";
|
||||
public final static long BUILD = 3;
|
||||
public final static long BUILD = 4;
|
||||
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