1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 06:30:42 +00:00

update default kcp bandwidth settings

This commit is contained in:
Darien Raymond 2016-11-30 21:36:40 +01:00
parent 31fbb62d0f
commit 8b07c39281
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@
},
"transport": {
"kcpSettings": {
"uplinkCapacity": 10,
"uplinkCapacity": 2,
"downlinkCapacity": 10
}
}

View File

@ -35,14 +35,14 @@ func (v *DownlinkCapacity) GetValue() uint32 {
func (v *WriteBuffer) GetSize() uint32 {
if v == nil {
return 1 * 1024 * 1024
return 2 * 1024 * 1024
}
return v.Size
}
func (v *ReadBuffer) GetSize() uint32 {
if v == nil {
return 1 * 1024 * 1024
return 2 * 1024 * 1024
}
return v.Size
}
@ -65,7 +65,7 @@ func (v *Config) GetAuthenticator() (internet.Authenticator, error) {
}
func (v *Config) GetSendingInFlightSize() uint32 {
size := v.UplinkCapacity.GetValue() * 1024 * 1024 / v.Mtu.GetValue() / (1000 / v.Tti.GetValue()) / 2
size := v.UplinkCapacity.GetValue() * 1024 * 1024 / v.Mtu.GetValue() / (1000 / v.Tti.GetValue())
if size < 8 {
size = 8
}
@ -77,7 +77,7 @@ func (v *Config) GetSendingBufferSize() uint32 {
}
func (v *Config) GetReceivingInFlightSize() uint32 {
size := v.DownlinkCapacity.GetValue() * 1024 * 1024 / v.Mtu.GetValue() / (1000 / v.Tti.GetValue()) / 2
size := v.DownlinkCapacity.GetValue() * 1024 * 1024 / v.Mtu.GetValue() / (1000 / v.Tti.GetValue())
if size < 8 {
size = 8
}