2007-08-05 Complication
* Update the sharing calculator on config.jsp and explain the trade-off even more thoroughly.
This commit is contained in:
@ -44,10 +44,11 @@
|
|||||||
Bandwidth share percentage:
|
Bandwidth share percentage:
|
||||||
<jsp:getProperty name="nethelper" property="sharePercentageBox" /><br />
|
<jsp:getProperty name="nethelper" property="sharePercentageBox" /><br />
|
||||||
<% int share = nethelper.getShareBandwidth();
|
<% int share = nethelper.getShareBandwidth();
|
||||||
if (share <= 16) {
|
if (share < 12) {
|
||||||
out.print("<b>NOTE</b>: You have configured I2P to share only " + share + "KBps. ");
|
out.print("<b>NOTE</b>: You have configured I2P to share only " + share + "KBps. ");
|
||||||
out.print("I2P requires over 16KBps to enable sharing. ");
|
out.print("I2P requires at least 12KBps to enable sharing. ");
|
||||||
out.print("Please enable sharing by configuring greater than 16 KBps to improve your anonymity and help the network.<br />");
|
out.print("Please enable sharing (participating in tunnels) by configuring more bandwidth. ");
|
||||||
|
out.print("It improves your anonymity by creating cover traffic, and helps the network.<br />");
|
||||||
} else {
|
} else {
|
||||||
out.print("You have configured I2P to share " + share + "KBps. ");
|
out.print("You have configured I2P to share " + share + "KBps. ");
|
||||||
out.print("The higher the share bandwidth the more you improve your anonymity and help the network.<br />");
|
out.print("The higher the share bandwidth the more you improve your anonymity and help the network.<br />");
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
$Id: history.txt,v 1.579 2007-07-16 16:15:51 zzz Exp $
|
$Id: history.txt,v 1.580 2007-08-04 22:25:30 complication Exp $
|
||||||
|
|
||||||
|
2007-08-05 Complication
|
||||||
|
* Update the sharing calculator on config.jsp
|
||||||
|
and explain the trade-off even more thoroughly.
|
||||||
|
|
||||||
2007-08-04 Complication
|
2007-08-04 Complication
|
||||||
* Lower the threshold between the K and L bandwidth class,
|
* Lower the threshold between the K and L bandwidth class,
|
||||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class RouterVersion {
|
public class RouterVersion {
|
||||||
public final static String ID = "$Revision: 1.514 $ $Date: 2007-07-16 16:15:53 $";
|
public final static String ID = "$Revision: 1.515 $ $Date: 2007-08-04 22:25:31 $";
|
||||||
public final static String VERSION = "0.6.1.28";
|
public final static String VERSION = "0.6.1.28";
|
||||||
public final static long BUILD = 17;
|
public final static long BUILD = 18;
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||||
System.out.println("Router ID: " + RouterVersion.ID);
|
System.out.println("Router ID: " + RouterVersion.ID);
|
||||||
|
Reference in New Issue
Block a user