|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use I2PException | |
---|---|
net.i2p.BOB | BOB, the Basic Open Bridge, allows TCP applications to talk over I2P. |
net.i2p.client | Interfaces and factories for the base I2P SDK used to develop applications that communicate through I2P. |
net.i2p.client.impl | Implements the base I2P SDK for developing applications that communicate through I2P. |
net.i2p.client.streaming | API, interfaces, and factory for a TCP-like (reliable, authenticated, in order) set of sockets for communicating over the IP-like (unreliable, unauthenticated, unordered) I2P messages. |
net.i2p.client.streaming.impl | Implementation of a TCP-like (reliable, authenticated, in order) set of sockets for communicating over the IP-like (unreliable, unauthenticated, unordered) I2P messages. |
net.i2p.data | These classes define the common data structures used by the various I2P protocols. |
net.i2p.data.i2cp | The Invisible Internet Client Protocol (I2CP) allows applications simplified access to the I2P network without requiring them to deal with the issues involved with the Invisible Internet Network Protocol (I2NP). |
net.i2p.data.i2np | This package defines the low-level messages sent between routers, called the Invisible Internet Network Protocol (I2NP). |
net.i2p.i2ptunnel | Implementation of preconfigured tunnels, both for clients and servers, and a UI for adding more and editing the configuration. |
net.i2p.router.transport.crypto | DH key generation. |
net.i2p.sam | The SAM client API. |
Uses of I2PException in net.i2p.BOB |
---|
Constructors in net.i2p.BOB that throw I2PException | |
---|---|
MUXlisten(AtomicBoolean lock,
NamedDB database,
NamedDB info,
Logger _log)
Constructor Will fail if INPORT is occupied. |
Uses of I2PException in net.i2p.client |
---|
Subclasses of I2PException in net.i2p.client | |
---|---|
class |
I2PSessionException
Thrown when there is a problem doing something on the session |
Methods in net.i2p.client that throw I2PException | |
---|---|
Destination |
I2PSimpleClient.createDestination(OutputStream destKeyStream)
Deprecated. Don't do this |
Destination |
I2PClient.createDestination(OutputStream destKeyStream)
Create a new destination with the default certificate creation properties and store it, along with the private encryption and signing keys at the specified location |
Destination |
I2PSimpleClient.createDestination(OutputStream destKeyStream,
Certificate cert)
Deprecated. Don't do this |
Destination |
I2PClient.createDestination(OutputStream destKeyStream,
Certificate cert)
Create a new destination with the given certificate and store it, along with the private encryption and signing keys at the specified location |
Destination |
I2PSimpleClient.createDestination(OutputStream destKeyStream,
SigType type)
Deprecated. Don't do this |
Destination |
I2PClient.createDestination(OutputStream destKeyStream,
SigType type)
Create a destination with the given signature type. |
Uses of I2PException in net.i2p.client.impl |
---|
Methods in net.i2p.client.impl that throw I2PException | |
---|---|
Destination |
I2PClientImpl.createDestination(OutputStream destKeyStream)
Create a destination with a DSA 1024/160 signature type and a null certificate. |
Destination |
I2PClientImpl.createDestination(OutputStream destKeyStream,
Certificate cert)
Create the destination with the given payload and write it out along with the PrivateKey and SigningPrivateKey to the destKeyStream If cert is a KeyCertificate, the signing keypair will be of the specified type. |
Destination |
I2PClientImpl.createDestination(OutputStream destKeyStream,
SigType type)
Create a destination with the given signature type. |
Uses of I2PException in net.i2p.client.streaming |
---|
Methods in net.i2p.client.streaming that throw I2PException | |
---|---|
I2PSocket |
I2PServerSocket.accept()
Waits for the next socket connecting. |
protected abstract I2PSocket |
AcceptingChannel.accept()
|
void |
I2PServerSocket.close()
Closes the socket. |
I2PSocket |
I2PSocketManager.connect(Destination peer)
Create a new connected socket (block until the socket is created) |
I2PSocket |
I2PSocketManager.connect(Destination peer,
I2PSocketOptions options)
Create a new connected socket (block until the socket is created) |
Uses of I2PException in net.i2p.client.streaming.impl |
---|
Subclasses of I2PException in net.i2p.client.streaming.impl | |
---|---|
class |
TooManyStreamsException
We attempted to have more open streams than we are willing to put up with |
Methods in net.i2p.client.streaming.impl that throw I2PException | |
---|---|
I2PSocket |
I2PServerSocketFull.accept()
Waits for the next socket connecting. |
I2PSocket |
I2PSocketManagerFull.connect(Destination peer)
Create a new connected socket. |
I2PSocket |
I2PSocketManagerFull.connect(Destination peer,
I2PSocketOptions options)
Create a new connected socket. |
(package private) void |
ConnectionPacketHandler.receivePacket(Packet packet,
Connection con)
distribute a packet to the connection specified |
I2PSocket |
I2PSocketManagerFull.receiveSocket()
The accept() call. |
Uses of I2PException in net.i2p.data |
---|
Subclasses of I2PException in net.i2p.data | |
---|---|
class |
DataFormatException
Thrown when the data was not available to read or write a DataStructure |
Methods in net.i2p.data that throw I2PException | |
---|---|
Destination |
PrivateKeyFile.createIfAbsent()
Also reads in the file to get the privKey and signingPrivKey, which aren't available from I2PClient. |
Uses of I2PException in net.i2p.data.i2cp |
---|
Subclasses of I2PException in net.i2p.data.i2cp | |
---|---|
class |
I2CPMessageException
Represent an error serializing or deserializing a message |
Uses of I2PException in net.i2p.data.i2np |
---|
Subclasses of I2PException in net.i2p.data.i2np | |
---|---|
class |
I2NPMessageException
Represent an error serializing or deserializing an APIMessage |
Uses of I2PException in net.i2p.i2ptunnel |
---|
Methods in net.i2p.i2ptunnel that throw I2PException | |
---|---|
I2PSocket |
I2PTunnelClientBase.createI2PSocket(Destination dest)
Create a new I2PSocket towards to the specified destination, adding it to the list of connections actually managed by this tunnel. |
I2PSocket |
I2PTunnelClientBase.createI2PSocket(Destination dest,
I2PSocketOptions opt)
Create a new I2PSocket towards to the specified destination, adding it to the list of connections actually managed by this tunnel. |
I2PSocket |
I2PTunnelClientBase.createI2PSocket(Destination dest,
int port)
Create a new I2PSocket towards to the specified destination, adding it to the list of connections actually managed by this tunnel. |
Uses of I2PException in net.i2p.router.transport.crypto |
---|
Subclasses of I2PException in net.i2p.router.transport.crypto | |
---|---|
static class |
DHSessionKeyBuilder.InvalidPublicParameterException
|
Uses of I2PException in net.i2p.sam |
---|
Methods in net.i2p.sam that throw I2PException | |
---|---|
void |
SAMv3StreamSession.accept(SAMv3Handler handler,
boolean verbose)
Accept a single incoming STREAM on the socket stolen from the handler. |
boolean |
SAMStreamSession.connect(int id,
String dest,
Properties props)
Connect the SAM STREAM session to the specified Destination |
void |
SAMv3StreamSession.connect(SAMv3Handler handler,
String dest,
Properties props)
Connect the SAM STREAM session to the specified Destination for a single connection, using the socket stolen from the handler. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |