forked from I2P_Developers/i2p.i2p
Console: Limit share portion to 90%
We want the part. traffic RED dropper to have some effect and not let traffic back up at the router bandwidth limiter and into the UDP-Sender queue, as it removes any room for client and router traffic, and throws the router into high message delay mode.
This commit is contained in:
@@ -349,7 +349,7 @@ public class ConfigNetHelper extends HelperBase {
|
||||
StringBuilder buf = new StringBuilder(256);
|
||||
buf.append("<select style=\"text-align: right !important;\" name=\"sharePercentage\">\n");
|
||||
boolean found = false;
|
||||
for (int i = 100; i >= -5; i -= 5) {
|
||||
for (int i = 90; i >= -5; i -= 5) {
|
||||
int val = i;
|
||||
if (i == -5) {
|
||||
if (found)
|
||||
|
||||
Reference in New Issue
Block a user