mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
20 lines
428 B
Go
20 lines
428 B
Go
package conf
|
|
|
|
type ConnectionConfig struct {
|
|
Handshake uint32 `yaml:"handshake"`
|
|
ConnIdle uint32 `yaml:"connIdle"`
|
|
UplinkOnly uint32 `yaml:"uplinkOnly"`
|
|
DownlinkOnly uint32 `yaml:"downlinkOnly"`
|
|
BufferSize int32 `yaml:"bufferSize"`
|
|
}
|
|
|
|
func NewConnectionConfig() *ConnectionConfig {
|
|
return &ConnectionConfig{
|
|
Handshake: 4,
|
|
ConnIdle: 30,
|
|
UplinkOnly: 2,
|
|
DownlinkOnly: 4,
|
|
BufferSize: 64,
|
|
}
|
|
}
|