See: Description
| Class | Description |
|---|---|
| ClientConnectionRunner |
Bridge the router and the client - managing state for a client.
|
| ClientListenerRunner |
Listen for connections on the specified port, and toss them onto the client manager's
set of connections once they are established.
|
| ClientManager |
Coordinate connections and various tasks
|
| ClientManagerFacadeImpl |
Base impl of the client facade
|
| ClientMessageEventListener |
Receive events from the client and handle them accordingly (updating the runner when
necessary)
|
| ClientWriterRunner |
Async writer class so that if a client app hangs, it won't take down the
whole router with it (otherwise the JobQueue would block until the client
reads from their i2cp socket, causing all sorts of bad things to happen)
For external I2CP connections only.
|
| CreateSessionJob |
Given an established connection, walk through the process of establishing the
leaseset.
|
| I2CPMessageQueueImpl |
Contains the methods to talk to a router or client via I2CP,
when both are in the same JVM.
|
| LeaseRequestState |
Bundle up the data points necessary when asynchronously requesting a lease
from a client
|
| LookupDestJob |
Look up the lease of a hash, to convert it to a Destination for the client.
|
| MessageReceivedJob |
Async job to notify the client that a new message is available for them,
or just send it directly if specified.
|
| QueuedClientConnectionRunner |
Zero-copy in-JVM.
|
| ReportAbuseJob |
Async job to send an abuse message to the client
|
| RequestLeaseSetJob |
Async job to walk the client through generating a lease set.
|
| SSLClientListenerRunner |
SSL version of ClientListenerRunner
|
Router-side implementation of the I2CP (I2P Client Protocol) interface for application integration.
This package implements the router side of the I2CP interface, which provides the standard API for applications to communicate through the I2P network. The I2CP protocol allows external applications to create destinations, manage tunnels, send and receive messages, and access I2P services without implementing the full router functionality.
Key Components:
Main Functionality:
I2CP Message Types:
Usage Notes: