forked from I2P_Developers/i2p.i2p
0.9.4
This commit is contained in:
@@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 15;
|
||||
public final static long BUILD = 0;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
@@ -64,8 +64,7 @@ class OutboundMessageState implements CDPQEntry {
|
||||
|
||||
/**
|
||||
* Called from UDPTransport
|
||||
* TODO make two constructors, remove this, and make more things final
|
||||
* @throws IAE if too big
|
||||
* @throws IAE if too big or if msg or peer is null
|
||||
*/
|
||||
public OutboundMessageState(I2PAppContext context, I2NPMessage msg, PeerState peer) {
|
||||
this(context, null, msg, peer);
|
||||
@@ -73,17 +72,16 @@ class OutboundMessageState implements CDPQEntry {
|
||||
|
||||
/**
|
||||
* Called from OutboundMessageFragments
|
||||
* TODO make two constructors, remove this, and make more things final
|
||||
* @throws IAE if too big
|
||||
* @throws IAE if too big or if msg or peer is null
|
||||
*/
|
||||
public OutboundMessageState(I2PAppContext context, OutNetMessage m, PeerState peer) {
|
||||
this(context, m, m.getMessage(), peer);
|
||||
}
|
||||
|
||||
/**
|
||||
* Called from OutboundMessageFragments
|
||||
* Internal.
|
||||
* @param m null if msg is "injected"
|
||||
* @throws IAE if too big
|
||||
* @throws IAE if too big or if msg or peer is null
|
||||
*/
|
||||
private OutboundMessageState(I2PAppContext context, OutNetMessage m, I2NPMessage msg, PeerState peer) {
|
||||
if (msg == null || peer == null)
|
||||
|
Reference in New Issue
Block a user