2005-12-26 Complication

* Fix some integer typecasting in I2PSnark (caused >2GB torrents to fail)
    * HTML readability cosmetics on "Peers" page
This commit is contained in:
complication
2005-12-27 04:20:29 +00:00
committed by zzz
parent dc0485b526
commit 9b7e5d1817
5 changed files with 18 additions and 9 deletions

View File

@@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
*
*/
public class RouterVersion {
public final static String ID = "$Revision: 1.316 $ $Date: 2005/12/22 05:04:13 $";
public final static String ID = "$Revision: 1.317 $ $Date: 2005/12/22 07:49:09 $";
public final static String VERSION = "0.6.1.8";
public final static long BUILD = 0;
public final static long BUILD = 1;
public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID);

View File

@@ -1161,7 +1161,7 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority
buf.append(dupRecv); //formatPct(recvDupPct));
buf.append("</code></td>");
buf.append("</tr>");
buf.append("</tr>\n");
out.write(buf.toString());
buf.setLength(0);