1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 18:45:23 +00:00
This commit is contained in:
Darien Raymond 2016-12-08 16:37:04 +01:00
parent a733367db4
commit 41258f19fc
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -7,6 +7,7 @@ import (
"v2ray.com/core/transport/internet"
)
// GetValue returns the value of MTU settings.
func (v *MTU) GetValue() uint32 {
if v == nil {
return 1350
@ -14,6 +15,7 @@ func (v *MTU) GetValue() uint32 {
return v.Value
}
// GetValue returns the value of TTI settings.
func (v *TTI) GetValue() uint32 {
if v == nil {
return 50
@ -21,6 +23,7 @@ func (v *TTI) GetValue() uint32 {
return v.Value
}
// GetValue returns the value of UplinkCapacity settings.
func (v *UplinkCapacity) GetValue() uint32 {
if v == nil {
return 5
@ -28,6 +31,7 @@ func (v *UplinkCapacity) GetValue() uint32 {
return v.Value
}
// GetValue returns the value of DownlinkCapacity settings.
func (v *DownlinkCapacity) GetValue() uint32 {
if v == nil {
return 20
@ -35,6 +39,7 @@ func (v *DownlinkCapacity) GetValue() uint32 {
return v.Value
}
// GetSize returns the size of WriterBuffer in bytes.
func (v *WriteBuffer) GetSize() uint32 {
if v == nil {
return 2 * 1024 * 1024
@ -42,6 +47,7 @@ func (v *WriteBuffer) GetSize() uint32 {
return v.Size
}
// GetSize returns the size of ReadBuffer in bytes.
func (v *ReadBuffer) GetSize() uint32 {
if v == nil {
return 2 * 1024 * 1024
@ -49,6 +55,7 @@ func (v *ReadBuffer) GetSize() uint32 {
return v.Size
}
// GetSecurity returns the security settings.
func (v *Config) GetSecurity() (cipher.AEAD, error) {
return NewSimpleAuthenticator(), nil
}