mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-22 15:35:52 +00:00
kcp : default value maxSendingWindow
MaxSendingWindow must be >= Mtu
This commit is contained in:
parent
085cb8c216
commit
1af795fad8
2 changed files with 2 additions and 2 deletions
|
|
@ -324,7 +324,7 @@ class KcpStreamSettings extends XrayCommonClass {
|
||||||
uplinkCapacity = 5,
|
uplinkCapacity = 5,
|
||||||
downlinkCapacity = 20,
|
downlinkCapacity = 20,
|
||||||
cwndMultiplier = 1,
|
cwndMultiplier = 1,
|
||||||
maxSendingWindow = 0,
|
maxSendingWindow = 1350,
|
||||||
) {
|
) {
|
||||||
super();
|
super();
|
||||||
this.mtu = mtu;
|
this.mtu = mtu;
|
||||||
|
|
|
||||||
|
|
@ -170,7 +170,7 @@ class KcpStreamSettings extends CommonClass {
|
||||||
uplinkCapacity = 5,
|
uplinkCapacity = 5,
|
||||||
downlinkCapacity = 20,
|
downlinkCapacity = 20,
|
||||||
cwndMultiplier = 1,
|
cwndMultiplier = 1,
|
||||||
maxSendingWindow = 0,
|
maxSendingWindow = 1350,
|
||||||
) {
|
) {
|
||||||
super();
|
super();
|
||||||
this.mtu = mtu;
|
this.mtu = mtu;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue