I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 622951c7 authored by zzz's avatar zzz
Browse files

* tunnels.jsp: Indicate if pool is dead

parent baa70299
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment