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

Skip to content
Snippets Groups Projects
Commit 2609a4d1 authored by zzz's avatar zzz
Browse files

Floodfill: Don't become ff w/o ECDSA support

Don't transition to non-ff when shutting down if configured true
Set ff for cap P and X
parent 2d58501d
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ package net.i2p.router.networkdb.kademlia;
import java.util.List;
import net.i2p.crypto.SigType;
import net.i2p.data.Hash;
import net.i2p.data.router.RouterAddress;
import net.i2p.data.router.RouterInfo;
......@@ -67,8 +68,7 @@ class FloodfillMonitorJob extends JobImpl {
}
private boolean shouldBeFloodfill() {
// Only if not shutting down...
if (getContext().router().gracefulShutdownInProgress())
if (!SigType.ECDSA_SHA256_P256.isAvailable())
return false;
// Hidden trumps netDb.floodfillParticipant=true
......@@ -83,6 +83,10 @@ class FloodfillMonitorJob extends JobImpl {
// auto from here down
// Only if not shutting down...
if (getContext().router().gracefulShutdownInProgress())
return false;
// ARM ElG decrypt is too slow
if (SystemVersion.isARM())
return false;
......@@ -105,8 +109,9 @@ class FloodfillMonitorJob extends JobImpl {
if (ri == null)
return false;
char bw = ri.getBandwidthTier().charAt(0);
// Only if class N or O...
if (bw < Router.CAPABILITY_BW128 || bw > Router.CAPABILITY_BW256)
// Only if class N, O, P, X
if (bw != Router.CAPABILITY_BW128 && bw != Router.CAPABILITY_BW256 &&
bw != Router.CAPABILITY_BW512 && bw != Router.CAPABILITY_BW_UNLIMITED)
return false;
// This list will not include ourselves...
......
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