* tunnels.jsp: Indicate if pool is dead

This commit is contained in:
zzz
2008-10-26 17:18:07 +00:00
parent baa70299fc
commit 622951c794

View File

@@ -441,8 +441,11 @@ public class TunnelPoolManager implements TunnelManagerFacade {
if (name == null)
name = client.toBase64().substring(0,4);
out.write("<h2><a name=\"" + client.toBase64().substring(0,4)
+ "\">Client tunnels</a> for " + name + " (<a href=\"/configtunnels.jsp#"
+ client.toBase64().substring(0,4) +"\">config</a>):</h2>\n");
+ "\">Client tunnels</a> for " + name);
if (_context.clientManager().isLocal(client))
out.write(" (<a href=\"/configtunnels.jsp#" + client.toBase64().substring(0,4) +"\">config</a>):</h2>\n");
else
out.write(" (dead):</h2>\n");
renderPool(out, in, outPool);
}