Package net.i2p.data.i2cp
Class SessionStatusMessage
java.lang.Object
net.i2p.data.i2cp.I2CPMessageImpl
net.i2p.data.i2cp.SessionStatusMessage
- All Implemented Interfaces:
I2CPMessage
public class SessionStatusMessage extends I2CPMessageImpl
Defines the message a router sends to a client indicating the
status of the session.
- Author:
- jrandom
-
Field Summary
Fields Modifier and Type Field Description static int
MESSAGE_TYPE
static int
STATUS_CREATED
static int
STATUS_DESTROYED
static int
STATUS_DUP_DEST
Used internally, not in spec, will be remapped to STATUS_INVALID before being sent.static int
STATUS_INVALID
static int
STATUS_REFUSED
static int
STATUS_UPDATED
-
Constructor Summary
Constructors Constructor Description SessionStatusMessage()
-
Method Summary
Modifier and Type Method Description protected void
doReadMessage(InputStream in, int size)
Read in the payload part of the message (after the initial 4 byte size and 1 byte type)protected byte[]
doWriteMessage()
Write out the payload part of the message (not including the 4 byte size and 1 byte type)SessionId
getSessionId()
int
getStatus()
int
getType()
Return the unique identifier for this type of message, as specified in the network specification document under #ClientAccessLayerMessagesSessionId
sessionId()
Return the SessionId for this message.void
setSessionId(SessionId id)
void
setStatus(int status)
String
toString()
Methods inherited from class net.i2p.data.i2cp.I2CPMessageImpl
readBytes, readMessage, readMessage, writeBytes, writeMessage
-
Field Details
-
MESSAGE_TYPE
public static final int MESSAGE_TYPE- See Also:
- Constant Field Values
-
STATUS_DESTROYED
public static final int STATUS_DESTROYED- See Also:
- Constant Field Values
-
STATUS_CREATED
public static final int STATUS_CREATED- See Also:
- Constant Field Values
-
STATUS_UPDATED
public static final int STATUS_UPDATED- See Also:
- Constant Field Values
-
STATUS_INVALID
public static final int STATUS_INVALID- See Also:
- Constant Field Values
-
STATUS_REFUSED
public static final int STATUS_REFUSED- Since:
- 0.9.12
- See Also:
- Constant Field Values
-
STATUS_DUP_DEST
public static final int STATUS_DUP_DESTUsed internally, not in spec, will be remapped to STATUS_INVALID before being sent.- Since:
- 0.9.44
- See Also:
- Constant Field Values
-
-
Constructor Details
-
SessionStatusMessage
public SessionStatusMessage()
-
-
Method Details
-
getSessionId
-
sessionId
Return the SessionId for this message.- Specified by:
sessionId
in interfaceI2CPMessage
- Overrides:
sessionId
in classI2CPMessageImpl
- Returns:
- null always. Extending classes with a SessionId must override.
- Since:
- 0.9.21
-
setSessionId
-
getStatus
public int getStatus() -
setStatus
public void setStatus(int status) -
doReadMessage
Description copied from class:I2CPMessageImpl
Read in the payload part of the message (after the initial 4 byte size and 1 byte type)- Specified by:
doReadMessage
in classI2CPMessageImpl
- Parameters:
in
- InputStreamsize
- payload size- Throws:
I2CPMessageException
IOException
-
doWriteMessage
Description copied from class:I2CPMessageImpl
Write out the payload part of the message (not including the 4 byte size and 1 byte type)- Specified by:
doWriteMessage
in classI2CPMessageImpl
- Returns:
- byte array
- Throws:
I2CPMessageException
IOException
-
getType
public int getType()Description copied from interface:I2CPMessage
Return the unique identifier for this type of message, as specified in the network specification document under #ClientAccessLayerMessages- Returns:
- unique identifier for this type of message
-
toString
-