mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-04-19 21:42:24 +00:00
xmux - hMaxReusableSecs
This commit is contained in:
parent
9bc5c1d070
commit
284731deeb
2 changed files with 7 additions and 7 deletions
|
@ -293,9 +293,9 @@ class xHTTPStreamSettings extends CommonClass {
|
||||||
xmux = {
|
xmux = {
|
||||||
maxConcurrency: "16-32",
|
maxConcurrency: "16-32",
|
||||||
maxConnections: 0,
|
maxConnections: 0,
|
||||||
cMaxReuseTimes: "64-128",
|
cMaxReuseTimes: 0,
|
||||||
cMaxLifetimeMs: 0,
|
hMaxRequestTimes: "600-900",
|
||||||
hMaxRequestTimes: "800-900",
|
hMaxReusableSecs: "1800-3000",
|
||||||
hKeepAlivePeriod: 0,
|
hKeepAlivePeriod: 0,
|
||||||
},
|
},
|
||||||
) {
|
) {
|
||||||
|
@ -330,8 +330,8 @@ class xHTTPStreamSettings extends CommonClass {
|
||||||
maxConcurrency: this.xmux.maxConcurrency,
|
maxConcurrency: this.xmux.maxConcurrency,
|
||||||
maxConnections: this.xmux.maxConnections,
|
maxConnections: this.xmux.maxConnections,
|
||||||
cMaxReuseTimes: this.xmux.cMaxReuseTimes,
|
cMaxReuseTimes: this.xmux.cMaxReuseTimes,
|
||||||
cMaxLifetimeMs: this.xmux.cMaxLifetimeMs,
|
|
||||||
hMaxRequestTimes: this.xmux.hMaxRequestTimes,
|
hMaxRequestTimes: this.xmux.hMaxRequestTimes,
|
||||||
|
hMaxReusableSecs: this.xmux.hMaxReusableSecs,
|
||||||
hKeepAlivePeriod: this.xmux.hKeepAlivePeriod,
|
hKeepAlivePeriod: this.xmux.hKeepAlivePeriod,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -392,12 +392,12 @@
|
||||||
<a-form-item label="Max Reuse Times">
|
<a-form-item label="Max Reuse Times">
|
||||||
<a-input v-model="outbound.stream.xhttp.xmux.cMaxReuseTimes"></a-input>
|
<a-input v-model="outbound.stream.xhttp.xmux.cMaxReuseTimes"></a-input>
|
||||||
</a-form-item>
|
</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-form-item label="Max Request Times">
|
||||||
<a-input v-model="outbound.stream.xhttp.xmux.hMaxRequestTimes"></a-input>
|
<a-input v-model="outbound.stream.xhttp.xmux.hMaxRequestTimes"></a-input>
|
||||||
</a-form-item>
|
</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-form-item label='Keep Alive Period'>
|
||||||
<a-input v-model.number="outbound.stream.xhttp.xmux.hKeepAlivePeriod"></a-input>
|
<a-input v-model.number="outbound.stream.xhttp.xmux.hKeepAlivePeriod"></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
Loading…
Reference in a new issue