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
This commit is contained in:
jrandom
2006-03-15 22:36:10 +00:00
committed by zzz
parent 863b511cde
commit 2c843fd818

View File

@ -38,6 +38,7 @@ public interface Transport {
public String getStyle(); public String getStyle();
public int countActivePeers(); public int countActivePeers();
public int countActiveSendPeers();
public List getMostRecentErrorMessages(); public List getMostRecentErrorMessages();
public void renderStatusHTML(Writer out) throws IOException; public void renderStatusHTML(Writer out) throws IOException;