forked from I2P_Developers/i2p.i2p
Javadoc: missing package.html files in router.jar (ticket #1109)
This commit is contained in:
@@ -680,7 +680,7 @@
|
|||||||
windowtitle="I2P Anonymous Network - Java Documentation - Version ${release.number}">
|
windowtitle="I2P Anonymous Network - Java Documentation - Version ${release.number}">
|
||||||
<group title="Core SDK (i2p.jar)" packages="net.i2p:net.i2p.*:net.i2p.client:net.i2p.client.*:net.i2p.internal:net.i2p.internal.*:freenet.support.CPUInformation:org.bouncycastle.oldcrypto:org.bouncycastle.oldcrypto.*:gnu.crypto.*:gnu.getopt:gnu.gettext:com.nettgryppa.security:net.metanotion:net.metanotion.*" />
|
<group title="Core SDK (i2p.jar)" packages="net.i2p:net.i2p.*:net.i2p.client:net.i2p.client.*:net.i2p.internal:net.i2p.internal.*:freenet.support.CPUInformation:org.bouncycastle.oldcrypto:org.bouncycastle.oldcrypto.*:gnu.crypto.*:gnu.getopt:gnu.gettext:com.nettgryppa.security:net.metanotion:net.metanotion.*" />
|
||||||
<group title="Streaming Library" packages="net.i2p.client.streaming:net.i2p.client.streaming.impl" />
|
<group title="Streaming Library" packages="net.i2p.client.streaming:net.i2p.client.streaming.impl" />
|
||||||
<group title="Router" packages="net.i2p.router:net.i2p.router.*:net.i2p.data.i2np:net.i2p.data.router:org.cybergarage.*:org.freenetproject:org.xlattice.crypto.filters" />
|
<group title="Router" packages="net.i2p.router:net.i2p.router.*:net.i2p.data.i2np:net.i2p.data.router:org.cybergarage:org.cybergarage.*:org.freenetproject:org.xlattice.crypto.filters" />
|
||||||
<group title="Router Console" packages="net.i2p.router.web:net.i2p.router.update:net.i2p.router.news" />
|
<group title="Router Console" packages="net.i2p.router.web:net.i2p.router.update:net.i2p.router.news" />
|
||||||
<!-- apps and bridges starting here, alphabetical please -->
|
<!-- apps and bridges starting here, alphabetical please -->
|
||||||
<group title="Addressbook Application" packages="net.i2p.addressbook" />
|
<group title="Addressbook Application" packages="net.i2p.addressbook" />
|
||||||
|
9
router/java/src/net/i2p/router/client/package.html
Normal file
9
router/java/src/net/i2p/router/client/package.html
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
Implements the router side of the I2CP interface,
|
||||||
|
which is the API for applications to send and receive data through the router.
|
||||||
|
The client side of the interface is implemented in net.i2p.client.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
8
router/java/src/net/i2p/router/message/package.html
Normal file
8
router/java/src/net/i2p/router/message/package.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
Creates and parses garlic messages.
|
||||||
|
Creates the source routing for outbound messages.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
@@ -0,0 +1,9 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
The network database, including implementation of floodfills.
|
||||||
|
Database lookups, stores, exploration, and replies.
|
||||||
|
Management of locally-generated RouterInfos and Leasesets.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
7
router/java/src/net/i2p/router/networkdb/package.html
Normal file
7
router/java/src/net/i2p/router/networkdb/package.html
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
A couple of classes, but most things are in kademlia.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
11
router/java/src/net/i2p/router/networkdb/reseed/package.html
Normal file
11
router/java/src/net/i2p/router/networkdb/reseed/package.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
Fetching, validation, unpacking, and installation of RouterInfos from
|
||||||
|
signed su3 files, unsigned zip files, and web indexes.
|
||||||
|
Supports loading from clearnet via HTTP and HTTPS, and from local files.
|
||||||
|
Automatic reseeding on first install and when references fall below a minimum value.
|
||||||
|
Support for user-initiated reseeds and status feedback via the router console.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
@@ -0,0 +1,7 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
DH key generation.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
13
router/java/src/net/i2p/router/tunnel/package.html
Normal file
13
router/java/src/net/i2p/router/tunnel/package.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
All the work of managing locally created and participating tunnels,
|
||||||
|
creating and handling tunnel messages, and their encryption.
|
||||||
|
Deals with the five different types of tunnel hops:
|
||||||
|
outbound gateway, outbound endpoint, inbound gateway, inbound endpoint, and middle hop.
|
||||||
|
Distributes messages received for each type.
|
||||||
|
Validation, queueing and throttling for each type.
|
||||||
|
Tunnel build message handling is in the pool package.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
11
router/java/src/net/i2p/router/tunnel/pool/package.html
Normal file
11
router/java/src/net/i2p/router/tunnel/pool/package.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
Tunnel creation, tunnel build message handling. Peer selection for tunnels.
|
||||||
|
Grouping of tunnels into inbound and outbound pools.
|
||||||
|
Pool configuration. Adaptive tunnel build strategy.
|
||||||
|
Build request throttling, acceptance, rejection, and dropping based on local
|
||||||
|
statistics and conditions.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
7
router/java/src/org/cybergarage/Dummy.java
Normal file
7
router/java/src/org/cybergarage/Dummy.java
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
package org.cybergarage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exists only to enable package.html to be included in javadoc.
|
||||||
|
* http://java.sun.com/j2se/javadoc/faq/index.html#packagewithoutjavafiles
|
||||||
|
*/
|
||||||
|
abstract class Dummy {}
|
7
router/java/src/org/cybergarage/package.html
Normal file
7
router/java/src/org/cybergarage/package.html
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
The cybergarage cyberlink UPnP library version 3.0, with minor mods for I2P.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
8
router/java/src/org/freenetproject/package.html
Normal file
8
router/java/src/org/freenetproject/package.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
Small classes used by net.i2p.transport.UPnP to interface with the org.cybergarage UPnP library,
|
||||||
|
as imported from freenet.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
7
router/java/src/org/xlattice/crypto/filters/package.html
Normal file
7
router/java/src/org/xlattice/crypto/filters/package.html
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
Bloom filter used by net.i2p.router.util.DecayingBloomFilter
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in New Issue
Block a user