* passes through all registered {@link FcpListener}s without the payload being
* consumed, the payload is discarded!
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class AllData extends BaseMessage {
* A wrapper around an {@link InputStream} that only supplies a limit number
* of bytes from the underlying input stream.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
private static class LimitedInputStream extends FilterInputStream {
* A “FinishedCompression” message signals the client that the compression of
* the request data has been finished.
*
- * @author David Roden <droden@gmail.com>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class FinishedCompression extends BaseMessage {
/**
* Some convenience methods for parsing a “NodeHello” message from the node.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class NodeHello extends BaseMessage {
* The “PeerNote” message contains a private note that has been entered for a
* darknet peer.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class PeerNote extends BaseMessage {
* The “PersistentGet” message is sent to the client to inform it about a
* persistent download, either in the client-local queue or in the global queue.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class PersistentGet extends BaseMessage {
* A “PersistentPut” message notifies a client about a persistent
* {@link ClientPut} request.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class PersistentPut extends BaseMessage {
/**
* The “ProtocolError” message signals that something has gone really wrong.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class ProtocolError extends BaseMessage {
/**
* Base exception for high-level client exceptions.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class HighLevelException extends Exception {
* Exception that is thrown when an operation is tried on a not connected
* connection.
*
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class NotConnectedException extends HighLevelException {