Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-01-01 20:48:47 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-01-01 20:48:47 +0300
commit284731deebaef376dc2fc9a5a8dd7d47cd6654dd (patch)
treeee34450f84816eda44184ab393ebaedc94cf96f0
parent9bc5c1d070645bcabdd44095df7b1592ab6f3365 (diff)
xmux - hMaxReusableSecs
-rw-r--r--web/assets/js/model/outbound.js8
-rw-r--r--web/html/xui/form/outbound.html6
2 files changed, 7 insertions, 7 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js
index 4bf88e0c..dc0db039 100644
--- a/web/assets/js/model/outbound.js
+++ b/web/assets/js/model/outbound.js
@@ -293,9 +293,9 @@ class xHTTPStreamSettings extends CommonClass {
xmux = {
maxConcurrency: "16-32",
maxConnections: 0,
- cMaxReuseTimes: "64-128",
- cMaxLifetimeMs: 0,
- hMaxRequestTimes: "800-900",
+ cMaxReuseTimes: 0,
+ hMaxRequestTimes: "600-900",
+ hMaxReusableSecs: "1800-3000",
hKeepAlivePeriod: 0,
},
) {
@@ -330,8 +330,8 @@ class xHTTPStreamSettings extends CommonClass {
maxConcurrency: this.xmux.maxConcurrency,
maxConnections: this.xmux.maxConnections,
cMaxReuseTimes: this.xmux.cMaxReuseTimes,
- cMaxLifetimeMs: this.xmux.cMaxLifetimeMs,
hMaxRequestTimes: this.xmux.hMaxRequestTimes,
+ hMaxReusableSecs: this.xmux.hMaxReusableSecs,
hKeepAlivePeriod: this.xmux.hKeepAlivePeriod,
},
};
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html
index f1f76940..4294d443 100644
--- a/web/html/xui/form/outbound.html
+++ b/web/html/xui/form/outbound.html
@@ -392,12 +392,12 @@
<a-form-item label="Max Reuse Times">
<a-input v-model="outbound.stream.xhttp.xmux.cMaxReuseTimes"></a-input>
</a-form-item>
- <a-form-item label="Max Lifetime (ms)">
- <a-input v-model="outbound.stream.xhttp.xmux.cMaxLifetimeMs"></a-input>
- </a-form-item>
<a-form-item label="Max Request Times">
<a-input v-model="outbound.stream.xhttp.xmux.hMaxRequestTimes"></a-input>
</a-form-item>
+ <a-form-item label="Max Reusable Secs">
+ <a-input v-model="outbound.stream.xhttp.xmux.hMaxReusableSecs"></a-input>
+ </a-form-item>
<a-form-item label='Keep Alive Period'>
<a-input v-model.number="outbound.stream.xhttp.xmux.hKeepAlivePeriod"></a-input>
</a-form-item>