mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-03 07:56:42 -05:00
allow small capacity
This commit is contained in:
parent
6e615c5863
commit
af5a2ac0bc
@ -14,11 +14,19 @@ func (this *Config) Apply() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *Config) GetSendingWindowSize() uint32 {
|
func (this *Config) GetSendingWindowSize() uint32 {
|
||||||
return this.UplinkCapacity * 1024 * 1024 / this.Mtu / (1000 / this.Tti)
|
size := this.UplinkCapacity * 1024 * 1024 / this.Mtu / (1000 / this.Tti) / 2
|
||||||
|
if size == 0 {
|
||||||
|
size = 8
|
||||||
|
}
|
||||||
|
return size
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *Config) GetReceivingWindowSize() uint32 {
|
func (this *Config) GetReceivingWindowSize() uint32 {
|
||||||
return this.DownlinkCapacity * 1024 * 1024 / this.Mtu / (1000 / this.Tti)
|
size := this.DownlinkCapacity * 1024 * 1024 / this.Mtu / (1000 / this.Tti) / 2
|
||||||
|
if size == 0 {
|
||||||
|
size = 8
|
||||||
|
}
|
||||||
|
return size
|
||||||
}
|
}
|
||||||
|
|
||||||
func DefaultConfig() Config {
|
func DefaultConfig() Config {
|
||||||
|
Loading…
Reference in New Issue
Block a user