forked from I2P_Developers/i2p.i2p

* Improved the bandwidth throtting on tunnel participation, especially for low bandwidth peers. * Improved failure handling in SSU with proactive reestablishment of failing idle peers, and rather than shitlisting a peer who failed too much, drop the SSU session and allow a new attempt (which, if it fails, will cause a shitlisting) * Clarify the cause of the shitlist on the profiles page, and include bandwidth limiter info at the bottom of the peers page.
39 lines
1007 B
Java
39 lines
1007 B
Java
package net.i2p.router.web;
|
|
|
|
import java.io.IOException;
|
|
import java.io.Writer;
|
|
|
|
import net.i2p.router.RouterContext;
|
|
|
|
public class PeerHelper {
|
|
private RouterContext _context;
|
|
private Writer _out;
|
|
/**
|
|
* Configure this bean to query a particular router context
|
|
*
|
|
* @param contextId begging few characters of the routerHash, or null to pick
|
|
* the first one we come across.
|
|
*/
|
|
public void setContextId(String contextId) {
|
|
try {
|
|
_context = ContextHelper.getContext(contextId);
|
|
} catch (Throwable t) {
|
|
t.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public PeerHelper() {}
|
|
|
|
public void setOut(Writer out) { _out = out; }
|
|
|
|
public String getPeerSummary() {
|
|
try {
|
|
_context.commSystem().renderStatusHTML(_out);
|
|
_context.bandwidthLimiter().renderStatusHTML(_out);
|
|
} catch (IOException ioe) {
|
|
ioe.printStackTrace();
|
|
}
|
|
return "";
|
|
}
|
|
}
|