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

Skip to content
Snippets Groups Projects
Verified Commit 47283e6e authored by zzz's avatar zzz
Browse files

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.
parent 15b66385
No related branches found
No related tags found
No related merge requests found
...@@ -349,7 +349,7 @@ public class ConfigNetHelper extends HelperBase { ...@@ -349,7 +349,7 @@ public class ConfigNetHelper extends HelperBase {
StringBuilder buf = new StringBuilder(256); StringBuilder buf = new StringBuilder(256);
buf.append("<select style=\"text-align: right !important;\" name=\"sharePercentage\">\n"); buf.append("<select style=\"text-align: right !important;\" name=\"sharePercentage\">\n");
boolean found = false; boolean found = false;
for (int i = 100; i >= -5; i -= 5) { for (int i = 90; i >= -5; i -= 5) {
int val = i; int val = i;
if (i == -5) { if (i == -5) {
if (found) if (found)
......
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