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>2026-04-20 18:45:14 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2026-04-20 18:45:14 +0300
commit86304226a9aaa9e9ebd148b303e91a8294e0d000 (patch)
treeb1b9cb8930fc98d78f24718e0738e17da03141c7 /web/html/form/stream/stream_kcp.html
parent6d0e7ec495cfc0ecb47b2afa532792032e0cfa92 (diff)
mKCP transport: Add cwndMultiplier
Replace legacy KCP buffer options with cwndMultiplier and maxSendingWindow across models and UI. Updated KcpStreamSettings in web/assets/js/model/inbound.js and web/assets/js/model/outbound.js (constructor, fromJson and toJson) to remove congestion/readBuffer/writeBuffer and use cwndMultiplier/maxSendingWindow instead. Updated web/html/form/outbound.html to reflect the new KCP fields in the stream form and to include extensive template formatting/markup cleanup for consistency and readability.
Diffstat (limited to 'web/html/form/stream/stream_kcp.html')
-rw-r--r--web/html/form/stream/stream_kcp.html11
1 files changed, 4 insertions, 7 deletions
diff --git a/web/html/form/stream/stream_kcp.html b/web/html/form/stream/stream_kcp.html
index 48e77848..a07b843f 100644
--- a/web/html/form/stream/stream_kcp.html
+++ b/web/html/form/stream/stream_kcp.html
@@ -30,18 +30,15 @@
:min="0"
></a-input-number>
</a-form-item>
- <a-form-item label="Congestion">
- <a-switch v-model="inbound.stream.kcp.congestion"></a-switch>
- </a-form-item>
- <a-form-item label="Read Buffer (MB)">
+ <a-form-item label="CWND Multiplier">
<a-input-number
- v-model.number="inbound.stream.kcp.readBuffer"
+ v-model.number="inbound.stream.kcp.cwndMultiplier"
:min="0"
></a-input-number>
</a-form-item>
- <a-form-item label="Write Buffer (MB)">
+ <a-form-item label="Max Sending Window">
<a-input-number
- v-model.number="inbound.stream.kcp.writeBuffer"
+ v-model.number="inbound.stream.kcp.maxSendingWindow"
:min="0"
></a-input-number>
</a-form-item>