Package net.i2p.router.transport.udp
Enum OutboundEstablishState.OutboundState
java.lang.Object
java.lang.Enum<OutboundEstablishState.OutboundState>
net.i2p.router.transport.udp.OutboundEstablishState.OutboundState
- All Implemented Interfaces:
Serializable
,Comparable<OutboundEstablishState.OutboundState>
,java.lang.constant.Constable
- Enclosing class:
OutboundEstablishState
public static enum OutboundEstablishState.OutboundState
extends Enum<OutboundEstablishState.OutboundState>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionwe have received a data packetwe have sent one or more confirmation packetswe have received a signed creation packetRelayResponse receivedSSU2: We don't have a tokenwe need to have someone introduce us to the peer, but haven't received a RelayResponse yetwe have sent an initial requestSSU2: We have sent a session request after receiving a retrySSU2: We have received a retrySSU2: We have sent a token requestnothin sent yetSessionConfirmed failed validation -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static OutboundEstablishState.OutboundState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OB_STATE_UNKNOWN
nothin sent yet -
OB_STATE_REQUEST_SENT
we have sent an initial request -
OB_STATE_CREATED_RECEIVED
we have received a signed creation packet -
OB_STATE_CONFIRMED_PARTIALLY
we have sent one or more confirmation packets -
OB_STATE_CONFIRMED_COMPLETELY
we have received a data packet -
OB_STATE_PENDING_INTRO
we need to have someone introduce us to the peer, but haven't received a RelayResponse yet -
OB_STATE_INTRODUCED
RelayResponse received -
OB_STATE_VALIDATION_FAILED
SessionConfirmed failed validation -
OB_STATE_NEEDS_TOKEN
SSU2: We don't have a token- Since:
- 0.9.54
-
OB_STATE_TOKEN_REQUEST_SENT
SSU2: We have sent a token request- Since:
- 0.9.54
-
OB_STATE_RETRY_RECEIVED
SSU2: We have received a retry- Since:
- 0.9.54
-
OB_STATE_REQUEST_SENT_NEW_TOKEN
SSU2: We have sent a session request after receiving a retry- Since:
- 0.9.54
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-