Uses of Interface
net.i2p.router.transport.Transport
Package | Description |
---|---|
net.i2p.router |
The I2P router application handles the I2P network communication.
|
net.i2p.router.transport |
The transport system allows the usage of communication layers that are below I2P in the stack, on which I2P messages are sent.
|
net.i2p.router.transport.ntcp |
The NTCP transport allows passing I2P messages on top of TCP.
|
net.i2p.router.transport.udp |
The UDP transport (also known as 'SSU transport') allows passing I2P messages on top of UDP.
|
-
Uses of Transport in net.i2p.router
Methods in net.i2p.router that return types with arguments of type Transport Modifier and Type Method Description SortedMap<String,Transport>
CommSystemFacade. getTransports()
Methods in net.i2p.router with parameters of type Transport Modifier and Type Method Description void
CommSystemFacade. registerTransport(Transport t)
Pluggable transportvoid
CommSystemFacade. unregisterTransport(Transport t)
Pluggable transport -
Uses of Transport in net.i2p.router.transport
Classes in net.i2p.router.transport that implement Transport Modifier and Type Class Description class
TransportImpl
Defines a way to send a message to another peer and start listening for messagesMethods in net.i2p.router.transport that return Transport Modifier and Type Method Description Transport
TransportBid. getTransport()
Specifies the transport that offered this bid(package private) Transport
TransportManager. getTransport(String style)
Methods in net.i2p.router.transport that return types with arguments of type Transport Modifier and Type Method Description SortedMap<String,Transport>
CommSystemFacadeImpl. getTransports()
(package private) SortedMap<String,Transport>
TransportManager. getTransports()
Methods in net.i2p.router.transport with parameters of type Transport Modifier and Type Method Description (package private) void
TransportManager. registerAndStart(Transport t)
Pluggable transports.void
CommSystemFacadeImpl. registerTransport(Transport t)
Pluggable transports.void
TransportBid. setTransport(Transport transport)
(package private) void
TransportManager. stopAndUnregister(Transport t)
Pluggable transports.void
CommSystemFacadeImpl. unregisterTransport(Transport t)
Pluggable transports. -
Uses of Transport in net.i2p.router.transport.ntcp
Classes in net.i2p.router.transport.ntcp that implement Transport Modifier and Type Class Description class
NTCPTransport
The NIO TCP transport -
Uses of Transport in net.i2p.router.transport.udp
Classes in net.i2p.router.transport.udp that implement Transport Modifier and Type Class Description class
UDPTransport
The SSU transport