1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-18 00:39:54 -04:00
Files
v2fly/transport/config.go
2016-06-02 01:49:25 +02:00

17 lines
200 B
Go

package transport
type StreamType int
const (
StreamTypeTCP = StreamType(0)
)
type TCPConfig struct {
ConnectionReuse bool
}
type Config struct {
StreamType StreamType
TCPConfig *TCPConfig
}