forked from I2P_Developers/i2p.i2p
i2ptunnel: Fix missing throttling section for non-HTTP servers
This commit is contained in:
@ -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" />
|
<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")%>
|
<%=intl._t("minutes")%>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr><tr>
|
||||||
<%
|
|
||||||
if ("httpserver".equals(tunnelType) || isBidirServer) {
|
|
||||||
%>
|
|
||||||
<tr>
|
|
||||||
<th colspan="8">
|
<th colspan="8">
|
||||||
<%=intl._t("Server Throttling")%>
|
<%=intl._t("Server Throttling")%>
|
||||||
</th>
|
</th>
|
||||||
@ -944,7 +940,11 @@
|
|||||||
<td></td><td>
|
<td></td><td>
|
||||||
<input type="text" name="maxStreams" title="<%=intl._t("Maximum number of simultaneous client connections")%>" value="<%=editBean.getMaxStreams(curTunnel)%>" class="freetext" />
|
<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>
|
</td><td></td><td></td><td class="blankColumn"></td>
|
||||||
</tr><tr>
|
</tr>
|
||||||
|
<%
|
||||||
|
if ("httpserver".equals(tunnelType) || isBidirServer) {
|
||||||
|
%>
|
||||||
|
<tr>
|
||||||
<th colspan="5">
|
<th colspan="5">
|
||||||
<%=intl._t("POST limits (0=unlimited)")%>
|
<%=intl._t("POST limits (0=unlimited)")%>
|
||||||
</th>
|
</th>
|
||||||
|
19
history.txt
19
history.txt
@ -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
|
2020-06-23 idk
|
||||||
* Update the images on the bandwidth wizard, based on undraw
|
* 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
|
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
|
* Jetty: Update servlet-api
|
||||||
|
|
||||||
2020-06-06 zzz
|
2020-06-06 zzz
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 6;
|
public final static long BUILD = 7;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user