| Package | Description |
|---|---|
| net.i2p.router | The I2P router application handles I2P network communication. |
| net.i2p.router.transport | Transport layer implementations and management for I2P network communication. |
| net.i2p.router.transport.ntcp | The NTCP (New TCP) transport for I2P, allowing I2P messages to be passed
over TCP connections. |
| net.i2p.router.transport.udp | The UDP transport (also known as 'SSU' or Secure Semi-reliable UDP transport)
for I2P, allowing I2P messages to be passed over UDP connections. |
| Modifier and Type | Method and Description |
|---|---|
SortedMap<String,Transport> | CommSystemFacade.getTransports()Registered transports by style name. |
| Modifier and Type | Method and Description |
|---|---|
void | CommSystemFacade.registerTransport(Transport t)Register a transport for use by the comm system. |
void | CommSystemFacade.unregisterTransport(Transport t)Unregister a transport from the comm system. |
| Modifier and Type | Class and Description |
|---|---|
class | TransportImplDefines a way to send a message to another peer and start listening for messages |
| Modifier and Type | Method and Description |
|---|---|
Transport | TransportBid.getTransport()Specifies the transport that offered this bid |
(package private) Transport | TransportManager.getTransport(String style) |
| Modifier and Type | Method and Description |
|---|---|
SortedMap<String,Transport> | CommSystemFacadeImpl.getTransports() |
(package private) SortedMap<String,Transport> | TransportManager.getTransports() |
| Modifier and Type | Method and Description |
|---|---|
(package private) void | TransportManager.registerAndStart(Transport t)Register and start a pluggable transport. |
void | CommSystemFacadeImpl.registerTransport(Transport t)Pluggable transports. |
void | TransportBid.setTransport(Transport transport)setTransport. |
(package private) void | TransportManager.stopAndUnregister(Transport t)Stop and unregister a pluggable transport. |
void | CommSystemFacadeImpl.unregisterTransport(Transport t)Pluggable transports. |
| Modifier and Type | Class and Description |
|---|---|
class | NTCPTransportNon-blocking TCP (NTCP) transport implementation for I2P. |
| Modifier and Type | Class and Description |
|---|---|
class | UDPTransportSSU/SSU2 transport implementation with UDP endpoint management and packet dispatch. |