From 3f3d43df41c1845e92394582cd4e024798a0bd97 Mon Sep 17 00:00:00 2001
From: zzz
Date: Sat, 22 Aug 2009 22:55:37 +0000
Subject: [PATCH] * Streaming, I2PSession: Prep for SessionKeyManager
work in the router - Comment out, deprecate, and javadoc for unused
keys and tags, they are vestiges of end-to-end crypto
---
.../src/net/i2p/client/streaming/package.html | 8 +--
.../net/i2p/client/streaming/Connection.java | 25 +++++----
.../client/streaming/ConnectionManager.java | 25 ++++++---
.../streaming/ConnectionPacketHandler.java | 12 ++--
.../net/i2p/client/streaming/PacketLocal.java | 22 +++++++-
.../net/i2p/client/streaming/PacketQueue.java | 32 ++++++-----
.../net/i2p/client/I2CPMessageProducer.java | 8 +++
.../src/net/i2p/client/I2PSessionImpl.java | 6 ++
.../src/net/i2p/client/I2PSessionImpl2.java | 55 +++++++++++++------
.../net/i2p/client/I2PSessionMuxedImpl.java | 10 ++++
.../src/net/i2p/crypto/HMAC256Generator.java | 2 +-
.../src/net/i2p/crypto/HMACGenerator.java | 2 +-
12 files changed, 145 insertions(+), 62 deletions(-)
diff --git a/apps/ministreaming/java/src/net/i2p/client/streaming/package.html b/apps/ministreaming/java/src/net/i2p/client/streaming/package.html
index 735135074..841860453 100644
--- a/apps/ministreaming/java/src/net/i2p/client/streaming/package.html
+++ b/apps/ministreaming/java/src/net/i2p/client/streaming/package.html
@@ -16,9 +16,9 @@ net.i2p.client.streaming.I2PServerSocket#accept} method, which will provide an
application wants to create a new stream to a peer, it should do so with the
appropriate {@link net.i2p.client.streaming.I2PSocketManager#connect} call.
-There is a simple pair of demo applications available as well - {@link
-net.i2p.client.streaming.StreamSinkServer} listens to a destination and dumps
-the data from all sockets it accepts to individual files, while {@link
-net.i2p.client.streaming.StreamSinkClient} connects to a particular destination
+
There is a simple pair of demo applications available as well -
+net.i2p.client.streaming.StreamSinkServer listens to a destination and dumps
+the data from all sockets it accepts to individual files, while
+net.i2p.client.streaming.StreamSinkClient connects to a particular destination
and sends a specific amount of random data then disconnects.