Package net.i2p.client.streaming.impl
Class MessageHandler
java.lang.Object
net.i2p.client.streaming.impl.MessageHandler
- All Implemented Interfaces:
I2PSessionListener
,I2PSessionMuxedListener
Receive raw information from the I2PSession and turn it into
Packets, if we can.
I2PSession -> MessageHandler -> PacketHandler -> ConnectionPacketHandler -> MessageInputStream
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
disconnected
(I2PSession session) Notify the client that the session has been terminated As of 0.9.54, this does not clear the listeners, so they will be notified again after a subsequent connection and disconnection.void
errorOccurred
(I2PSession session, String message, Throwable error) Notify the client that some error occurredvoid
messageAvailable
(I2PSession session, int msgId, long size) Instruct the client that the given session has received a message with size # of bytes.void
messageAvailable
(I2PSession session, int msgId, long size, int proto, int fromPort, int toPort) Instruct the client that the given session has received a message with size # of bytes.void
void
reportAbuse
(I2PSession session, int severity) Instruct the client that the session specified seems to be under attack and that the client may wish to move its destination to another router.
-
Constructor Details
-
MessageHandler
-
-
Method Details
-
messageAvailable
Instruct the client that the given session has received a message with size # of bytes. This shouldn't be called anymore since we are registering as a muxed listener.- Specified by:
messageAvailable
in interfaceI2PSessionListener
- Specified by:
messageAvailable
in interfaceI2PSessionMuxedListener
- Parameters:
session
- session to notifymsgId
- message number availablesize
- size of the message
-
messageAvailable
public void messageAvailable(I2PSession session, int msgId, long size, int proto, int fromPort, int toPort) Instruct the client that the given session has received a message with size # of bytes.- Specified by:
messageAvailable
in interfaceI2PSessionMuxedListener
- Parameters:
session
- session to notifymsgId
- message number availablesize
- size of the messageproto
- 1-254 or 0 for unspecifiedfromPort
- 1-65535 or 0 for unspecifiedtoPort
- 1-65535 or 0 for unspecified
-
reportAbuse
Instruct the client that the session specified seems to be under attack and that the client may wish to move its destination to another router.- Specified by:
reportAbuse
in interfaceI2PSessionListener
- Specified by:
reportAbuse
in interfaceI2PSessionMuxedListener
- Parameters:
session
- session to report abuse toseverity
- how bad the abuse is
-
disconnected
Notify the client that the session has been terminated As of 0.9.54, this does not clear the listeners, so they will be notified again after a subsequent connection and disconnection.- Specified by:
disconnected
in interfaceI2PSessionListener
- Specified by:
disconnected
in interfaceI2PSessionMuxedListener
- Parameters:
session
- that has been terminated
-
errorOccurred
Notify the client that some error occurred- Specified by:
errorOccurred
in interfaceI2PSessionListener
- Specified by:
errorOccurred
in interfaceI2PSessionMuxedListener
- Parameters:
session
- of the clientmessage
- to send to the client about the errorerror
- the actual error
-
addDisconnectListener
-
removeDisconnectListener
-