diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-04-26 21:49:02 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-04-26 21:49:02 +0300 |
| commit | abc5cf3439ffec38accaa4242eb7d4a692cb5bb4 (patch) | |
| tree | f286d4958d3b24411415b84b264e25bc6a5255cb | |
| parent | a7e7788e29e61d1e912f7832c632834fc981b880 (diff) | |
Increase KCP maxSendingWindow to 2MiB
| -rw-r--r-- | web/assets/js/model/inbound.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index e3816060..c653eb7a 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -323,7 +323,7 @@ class KcpStreamSettings extends XrayCommonClass { uplinkCapacity = 5, downlinkCapacity = 20, cwndMultiplier = 1, - maxSendingWindow = 1350, + maxSendingWindow = 2097152, ) { super(); this.mtu = mtu; |
