I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit 51bdd9a2 authored by zzz's avatar zzz
Browse files

SSU: Add getVersion() methods (prep for SSU2)

parent 04dd1861
No related branches found
No related tags found
No related merge requests found
......@@ -113,6 +113,11 @@ class InboundEstablishState {
receiveSessionRequest(req);
}
/**
* @since 0.9.54
*/
public int getVersion() { return 1; }
public synchronized InboundState getState() { return _currentState; }
/** @return if previously complete */
......
......@@ -151,6 +151,11 @@ class OutboundEstablishState {
}
}
/**
* @since 0.9.54
*/
public int getVersion() { return 1; }
public synchronized OutboundState getState() { return _currentState; }
/** @return if previously complete */
......
......@@ -104,6 +104,11 @@ class OutboundMessageState implements CDPQEntry {
_fragmentAcks = _numFragments < 64 ? mask(_numFragments) - 1L : -1L;
_fragmentSends = (numFragments > 1) ? new byte[numFragments] : null;
}
/**
* @since 0.9.54
*/
public int getVersion() { return _peer.getVersion(); }
/**
* @param fragment 0-63
......
......@@ -378,6 +378,11 @@ public class PeerState {
_remoteHostId = new RemoteHostId(remoteIP, remotePort);
_bwEstimator = new SimpleBandwidthEstimator(ctx, this);
}
/**
* @since 0.9.54
*/
public int getVersion() { return 1; }
/**
* Caller should sync; UDPTransport must remove and add to peersByRemoteHost map
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment