forked from I2P_Developers/i2p.i2p
javadocs
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user