From 2c843fd818da2100bf597ec9694c551fd41b23f5 Mon Sep 17 00:00:00 2001 From: jrandom <jrandom> Date: Wed, 15 Mar 2006 22:36:10 +0000 Subject: [PATCH] 2006-03-15 jrandom * Further stat cleanup * Keep track of how many peers we are actively trying to communicate with, beyond those who are just trying to communicate with us. * Further router tunnel participation throttle revisions to avoid spurious rejections * Rate stat display cleanup (thanks ripple!) * Don't even try to send messages that have been queued too long --- router/java/src/net/i2p/router/transport/Transport.java | 1 + 1 file changed, 1 insertion(+) diff --git a/router/java/src/net/i2p/router/transport/Transport.java b/router/java/src/net/i2p/router/transport/Transport.java index e7cc3fa0e9..f37cef00ee 100644 --- a/router/java/src/net/i2p/router/transport/Transport.java +++ b/router/java/src/net/i2p/router/transport/Transport.java @@ -38,6 +38,7 @@ public interface Transport { public String getStyle(); public int countActivePeers(); + public int countActiveSendPeers(); public List getMostRecentErrorMessages(); public void renderStatusHTML(Writer out) throws IOException; -- GitLab