void |
EstablishmentManager.addOutboundToken(RemoteHostId peer,
long token,
long expires) |
Remember a token that can be used later to connect to the peer
|
(package private) UDPPacket |
PacketBuilder.buildRelayIntro(RemoteHostId alice,
PeerState charlie,
UDPPacketReader.RelayRequestReader request) |
|
(package private) UDPPacket |
PacketBuilder.buildRelayResponse(RemoteHostId alice,
PeerState charlie,
long nonce,
SessionKey cipherKey,
SessionKey macKey) |
|
(package private) InboundEstablishState |
EstablishmentManager.getInboundState(RemoteHostId from) |
Grab the active establishing state
|
EstablishmentManager.Token |
EstablishmentManager.getInboundToken(RemoteHostId peer) |
Get a token that can be used later for the peer to connect to us
|
(package private) OutboundEstablishState |
EstablishmentManager.getOutboundState(RemoteHostId from) |
Grab the active establishing state
|
long |
EstablishmentManager.getOutboundToken(RemoteHostId peer) |
Get a token to connect to the peer
|
(package private) PeerState |
UDPTransport.getPeerState(RemoteHostId hostInfo) |
get the state for the peer at the given remote host/port, or null
if no state exists
|
(package private) List<PeerState> |
UDPTransport.getPeerStatesByIP(RemoteHostId hostInfo) |
Get the states for all peers at the given remote host, ignoring port.
|
boolean |
EstablishmentManager.isInboundTokenValid(RemoteHostId peer,
long token) |
Is the token from this peer valid?
|
(package private) boolean |
UDPTransport.isInDropList(RemoteHostId peer) |
|
(package private) PeerState |
UDPTransport.pickTestPeer(PeerTestState.Role peerRole,
int version,
boolean isIPv6,
RemoteHostId dontInclude) |
Pick a Bob (if we are Alice) or a Charlie (if we are Bob).
|
(package private) void |
IntroductionManager.receiveRelayIntro(RemoteHostId bob,
UDPPacketReader reader) |
We are Charlie and we got this from Bob.
|
(package private) void |
IntroductionManager.receiveRelayRequest(RemoteHostId alice,
UDPPacketReader reader) |
We are Bob and we got this from Alice.
|
(package private) void |
EstablishmentManager.receiveRelayResponse(RemoteHostId bob,
UDPPacketReader reader) |
We are Alice, we sent a RelayRequest to Bob and got a response back.
|
(package private) void |
EstablishmentManager.receiveSessionConfirmed(RemoteHostId from,
InboundEstablishState state,
UDPPacketReader reader) |
got a SessionConfirmed (should only happen as part of an inbound
establishment)
SSU 1 only.
|
(package private) void |
EstablishmentManager.receiveSessionCreated(RemoteHostId from,
OutboundEstablishState state,
UDPPacketReader reader) |
Got a SessionCreated (in response to our outbound SessionRequest)
SSU 1 only.
|
(package private) void |
EstablishmentManager.receiveSessionDestroy(RemoteHostId from) |
Got a SessionDestroy - maybe during an inbound establish?
TODO - PacketHandler won't look up inbound establishes
As this packet was essentially unauthenticated (i.e.
|
(package private) void |
EstablishmentManager.receiveSessionDestroy(RemoteHostId from,
OutboundEstablishState state) |
Got a SessionDestroy during outbound establish
SSU 1 or 2
|
(package private) void |
EstablishmentManager.receiveSessionDestroy(RemoteHostId from,
PeerState state) |
Got a SessionDestroy on an established conn
SSU 1 or 2
|
(package private) void |
EstablishmentManager.receiveSessionOrTokenRequest(RemoteHostId from,
InboundEstablishState2 state,
UDPPacket packet) |
Got a SessionRequest OR a TokenRequest (initiates an inbound establishment)
SSU 2 only.
|
(package private) void |
EstablishmentManager.receiveSessionRequest(RemoteHostId from,
InboundEstablishState state,
UDPPacketReader reader) |
Got a SessionRequest (initiates an inbound establishment)
SSU 1 only.
|
void |
PeerTestManager.receiveTest(RemoteHostId from,
PeerState2 fromPeer,
int msg,
int status,
Hash h,
byte[] data) |
Entry point for all incoming packets.
|
void |
PeerTestManager.receiveTest(RemoteHostId from,
PeerState fromPeer,
boolean inSession,
UDPPacketReader reader) |
Entry point for all incoming packets.
|
void |
PeerTestManager.receiveTest(RemoteHostId from,
UDPPacket packet) |
Entry point for all out-of-session packets, messages 5-7 only.
|