propagate from branch 'i2p.i2p.zzz.test' (head 350d5a26c305a3178c851c60451ad9e72d7d82a7)
to branch 'i2p.i2p' (head 869d178de23c9945a98da66013e642b9aa435e28)
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
|
2009-09-02 sponge
|
||||||
|
* Small logic fix for dr|z3d
|
||||||
|
|
||||||
2009-08-28 zzz
|
2009-08-28 zzz
|
||||||
* Client: Fail if no date handshake after 30s or no leaseset
|
* Client: Fail if no date handshake after 30s or no leaseset
|
||||||
after 5m, rather than hanging forever.
|
after 5m, rather than hanging forever.
|
||||||
|
@ -1091,8 +1091,12 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
|
|||||||
buf.append("<a name=\"our-info\" ></a><b>Our info: ").append(hash).append("</b></th></tr><tr><td>\n");
|
buf.append("<a name=\"our-info\" ></a><b>Our info: ").append(hash).append("</b></th></tr><tr><td>\n");
|
||||||
} else {
|
} else {
|
||||||
buf.append("<b>Peer info for:</b> ").append(hash).append("\n");
|
buf.append("<b>Peer info for:</b> ").append(hash).append("\n");
|
||||||
|
if (full) {
|
||||||
|
buf.append("[<a href=\"netdb.jsp\" >Back</a>]</th></tr><td>\n");
|
||||||
|
} else {
|
||||||
buf.append("[<a href=\"netdb.jsp?r=").append(hash.substring(0, 6)).append("\" >Full entry</a>]</th></tr><td>\n");
|
buf.append("[<a href=\"netdb.jsp?r=").append(hash.substring(0, 6)).append("\" >Full entry</a>]</th></tr><td>\n");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
long age = _context.clock().now() - info.getPublished();
|
long age = _context.clock().now() - info.getPublished();
|
||||||
if (isUs && _context.router().isHidden())
|
if (isUs && _context.router().isHidden())
|
||||||
|
Reference in New Issue
Block a user