I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 0f4e0950 authored by zzz's avatar zzz
Browse files

javadocs

parent 7c5dfaee
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,9 @@ public class I2PTunnelHTTPClientRunner extends I2PTunnelRunner {
super(s, i2ps, slock, initialI2PData, null, sockList, onFail);
}
/**
* Only call once!
*/
@Override
protected OutputStream getSocketOut() throws IOException {
OutputStream raw = super.getSocketOut();
......
......@@ -21,6 +21,7 @@ import net.i2p.util.Log;
* Also called when opting out of ff to call off the hounds ASAP.
* Currently floods FNDF.MAX_TO_FLOOD * 2 routers nearest to us.
*
* @since 0.9.21
*/
class FloodfillRouterInfoFloodJob extends JobImpl {
private final Log _log;
......
......@@ -20,6 +20,8 @@ import net.i2p.util.Log;
/**
* This extends StoreJob to fire off a FloodfillVerifyStoreJob after success.
*
* Stores through this class always request a reply.
*
*/
class FloodfillStoreJob extends StoreJob {
private final FloodfillNetworkDatabaseFacade _facade;
......
......@@ -33,6 +33,8 @@ import net.i2p.util.Log;
import net.i2p.util.VersionComparator;
/**
* Stores through this always request a reply.
*
* Unused directly - see FloodfillStoreJob
*/
class StoreJob extends JobImpl {
......
......@@ -193,7 +193,8 @@ class PeerManager {
}
/**
* Find some peers that meet the criteria and we have the netDb info for locally
* Find some peers that meet the criteria and we have the netDb info for locally.
* Returned list will not include ourselves.
*
* Only used by PeerTestJob (PURPOSE_TEST)
*/
......
......@@ -24,7 +24,7 @@ class ExploratoryPeerSelector extends TunnelPeerSelector {
super(context);
}
public List<Hash> selectPeers(TunnelPoolSettings settings) {
public List<Hash> selectPeers(TunnelPoolSettings settings) {
Log l = ctx.logManager().getLog(getClass());
int length = getLength(settings);
if (length < 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment