i2ptunnel: Fix missing throttling section for non-HTTP servers

This commit is contained in:
zzz
2020-07-02 12:15:54 +00:00
parent b53cdafc84
commit 112beb552b
3 changed files with 24 additions and 9 deletions

View File

@ -902,11 +902,7 @@
<input type="text" id="reduceTime" name="reduceTime" size="4" maxlength="4" title="<%=intl._t("Period of inactivity before tunnel number is reduced")%>" value="<%=editBean.getReduceTime(curTunnel)%>" class="freetext period" />
<%=intl._t("minutes")%>
</td>
</tr>
<%
if ("httpserver".equals(tunnelType) || isBidirServer) {
%>
<tr>
</tr><tr>
<th colspan="8">
<%=intl._t("Server Throttling")%>
</th>
@ -944,7 +940,11 @@
<td></td><td>
<input type="text" name="maxStreams" title="<%=intl._t("Maximum number of simultaneous client connections")%>" value="<%=editBean.getMaxStreams(curTunnel)%>" class="freetext" />
</td><td></td><td></td><td class="blankColumn"></td>
</tr><tr>
</tr>
<%
if ("httpserver".equals(tunnelType) || isBidirServer) {
%>
<tr>
<th colspan="5">
<%=intl._t("POST limits (0=unlimited)")%>
</th>

View File

@ -1,9 +1,24 @@
2020-07-02 zzz
* i2ptunnel: Fix missing throttling section for non-HTTP servers
2020-06-28 zzz
* NetDB: Check signature in verify
2020-06-23 idk
* Update the images on the bandwidth wizard, based on undraw
assets, used under licenses/LICENSE-Undraw.txt.
assets, used under licenses/LICENSE-Undraw.txt.
2020-06-22 zzz
* Sybil: Enable analysis and blocking by default
2020-06-12 zzz
* I2CP: Meta LS2 error code handling
2020-06-10 zzz
* Util: Support hostname lookups in LookupDest CLI
2020-06-07 zzz
* i2ptunnel: Fix missing tunnel quantity section for servers
* i2ptunnel: Fix missing tunnel quantity section for servers (ticket #2747)
* Jetty: Update servlet-api
2020-06-06 zzz

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 6;
public final static long BUILD = 7;
/** for example "-test" */
public final static String EXTRA = "";