forked from I2P_Developers/i2p.i2p
javadoc spelling fixes
This commit is contained in:
@ -92,7 +92,7 @@ public interface I2PClient {
|
||||
* @param destKeyStream location from which to read the Destination, PrivateKey, and SigningPrivateKey from,
|
||||
* format is specified in {@link net.i2p.data.PrivateKeyFile PrivateKeyFile}
|
||||
* @param options set of options to configure the router with, if null will use System properties
|
||||
* @return new session allowing a Destination to recieve all of its messages and send messages to any other Destination.
|
||||
* @return new session allowing a Destination to receive all of its messages and send messages to any other Destination.
|
||||
*/
|
||||
public I2PSession createSession(InputStream destKeyStream, Properties options) throws I2PSessionException;
|
||||
|
||||
|
@ -921,7 +921,7 @@ public abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2
|
||||
*******/
|
||||
|
||||
/**
|
||||
* Recieve a payload message and let the app know its available
|
||||
* Receive a payload message and let the app know its available
|
||||
*/
|
||||
public void addNewMessage(MessagePayloadMessage msg) {
|
||||
Long mid = Long.valueOf(msg.getMessageId());
|
||||
@ -1044,7 +1044,7 @@ public abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2
|
||||
|
||||
/**
|
||||
* The I2CPMessageEventListener callback.
|
||||
* Recieve notification of some I2CP message and handle it if possible.
|
||||
* Receive notification of some I2CP message and handle it if possible.
|
||||
*
|
||||
* We route the message based on message type AND session ID.
|
||||
*
|
||||
@ -1127,7 +1127,7 @@ public abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2
|
||||
|
||||
/**
|
||||
* The I2CPMessageEventListener callback.
|
||||
* Recieve notifiation of an error reading the I2CP stream.
|
||||
* Receive notifiation of an error reading the I2CP stream.
|
||||
* As of 0.9.41, does NOT call sessionlistener.disconnected(),
|
||||
* the I2CPMessageReader will call disconnected() also.
|
||||
*
|
||||
@ -1423,7 +1423,7 @@ public abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2
|
||||
|
||||
/**
|
||||
* The I2CPMessageEventListener callback.
|
||||
* Recieve notification that the I2CP connection was disconnected.
|
||||
* Receive notification that the I2CP connection was disconnected.
|
||||
* Calls sessionlistener.disconnected()
|
||||
* @param reader unused
|
||||
*/
|
||||
|
@ -21,7 +21,7 @@ import net.i2p.util.Log;
|
||||
/**
|
||||
* Handle I2CP MessagePayloadMessages from the router delivering the contents
|
||||
* of a message by accepting it, decrypting the payload, adding it to the set of
|
||||
* recieved messages, and telling the router that it has been recieved correctly.
|
||||
* received messages, and telling the router that it has been received correctly.
|
||||
*
|
||||
* We don't really decrypt (no more end-to-end crypto)
|
||||
*
|
||||
|
Reference in New Issue
Block a user