diff --git a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
index 32ad3c2072..9583aaff0a 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
@@ -1,5 +1,7 @@
package net.i2p.router.web;
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
import java.text.DecimalFormat;
import net.i2p.data.DataHelper;
@@ -301,11 +303,25 @@ public class SummaryHelper {
}
}
+ /**
+ * How many client destinations are connected locally.
+ *
+ * @return html section summary
+ */
+ public String getDestinations() {
+ ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
+ try {
+ _context.clientManager().renderStatusHTML(baos);
+ return new String(baos.toByteArray());
+ } catch (IOException ioe) {
+ _context.logManager().getLog(SummaryHelper.class).error("Error rendering client info", ioe);
+ return "";
+ }
+ }
+
/**
* How many free inbound tunnels we have.
*
- * @param contextId begging few characters of the routerHash, or null to pick
- * the first one we come across.
*/
public int getInboundTunnels() {
if (_context == null)
diff --git a/apps/routerconsole/jsp/summary.jsp b/apps/routerconsole/jsp/summary.jsp
index 3c70f31197..64cda9550a 100644
--- a/apps/routerconsole/jsp/summary.jsp
+++ b/apps/routerconsole/jsp/summary.jsp
@@ -25,6 +25,8 @@
Used: