forked from I2P_Developers/i2p.i2p
* i2psnark: Report cleared trackerErr immediately
* i2psnark: Add trackerErr reporting after previous success; retry more quickly
* i2psnark: Set up new connections more quickly
* i2psnark: Don't delay tracker fetch when setting up lots of connections
* i2psnark: Reduce MAX_UPLOADERS from 12 to 4
28 lines
943 B
Java
28 lines
943 B
Java
package net.i2p.router;
|
|
/*
|
|
* free (adj.): unencumbered; not under the control of others
|
|
* Written by jrandom in 2003 and released into the public domain
|
|
* with no warranty of any kind, either expressed or implied.
|
|
* It probably won't make your computer catch on fire, or eat
|
|
* your children, but it might. Use at your own risk.
|
|
*
|
|
*/
|
|
|
|
import net.i2p.CoreVersion;
|
|
|
|
/**
|
|
* Expose a version string
|
|
*
|
|
*/
|
|
public class RouterVersion {
|
|
public final static String ID = "$Revision: 1.449 $ $Date: 2006-09-04 01:01:53 $";
|
|
public final static String VERSION = "0.6.1.24";
|
|
public final static long BUILD = 8;
|
|
public static void main(String args[]) {
|
|
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
|
System.out.println("Router ID: " + RouterVersion.ID);
|
|
System.out.println("I2P Core version: " + CoreVersion.VERSION);
|
|
System.out.println("Core ID: " + CoreVersion.ID);
|
|
}
|
|
}
|