forked from v2fly/v2ray-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.go
110 lines (93 loc) · 2.18 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package kcp
import (
"crypto/cipher"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
)
// GetValue returns the value of MTU settings.
func (v *MTU) GetValue() uint32 {
if v == nil {
return 1350
}
return v.Value
}
// GetValue returns the value of TTI settings.
func (v *TTI) GetValue() uint32 {
if v == nil {
return 50
}
return v.Value
}
// GetValue returns the value of UplinkCapacity settings.
func (v *UplinkCapacity) GetValue() uint32 {
if v == nil {
return 5
}
return v.Value
}
// GetValue returns the value of DownlinkCapacity settings.
func (v *DownlinkCapacity) GetValue() uint32 {
if v == nil {
return 20
}
return v.Value
}
// GetSize returns the size of WriterBuffer in bytes.
func (v *WriteBuffer) GetSize() uint32 {
if v == nil {
return 2 * 1024 * 1024
}
return v.Size
}
// GetSize returns the size of ReadBuffer in bytes.
func (v *ReadBuffer) GetSize() uint32 {
if v == nil {
return 2 * 1024 * 1024
}
return v.Size
}
// GetSecurity returns the security settings.
func (v *Config) GetSecurity() (cipher.AEAD, error) {
return NewSimpleAuthenticator(), nil
}
func (v *Config) GetPackerHeader() (internet.PacketHeader, error) {
if v.HeaderConfig != nil {
rawConfig, err := v.HeaderConfig.GetInstance()
if err != nil {
return nil, err
}
return internet.CreatePacketHeader(v.HeaderConfig.Type, rawConfig)
}
return nil, nil
}
func (v *Config) GetSendingInFlightSize() uint32 {
size := v.UplinkCapacity.GetValue() * 1024 * 1024 / v.Mtu.GetValue() / (1000 / v.Tti.GetValue())
if size < 8 {
size = 8
}
return size
}
func (v *Config) GetSendingBufferSize() uint32 {
return v.WriteBuffer.GetSize() / v.Mtu.GetValue()
}
func (v *Config) GetReceivingInFlightSize() uint32 {
size := v.DownlinkCapacity.GetValue() * 1024 * 1024 / v.Mtu.GetValue() / (1000 / v.Tti.GetValue())
if size < 8 {
size = 8
}
return size
}
func (v *Config) GetReceivingBufferSize() uint32 {
return v.ReadBuffer.GetSize() / v.Mtu.GetValue()
}
func (o *ConnectionReuse) IsEnabled() bool {
if o == nil {
return true
}
return o.Enable
}
func init() {
internet.RegisterNetworkConfigCreator(v2net.Network_KCP, func() interface{} {
return new(Config)
})
}