mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-08-15 03:57:31 +00:00
17 lines
200 B
Go
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
|
||
|
}
|