v2ray-core/transport/internet/tcp/config.go

20 lines
323 B
Go

package tcp
import (
v2net "v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
)
func (this *ConnectionReuse) IsEnabled() bool {
if this == nil {
return true
}
return this.Enable
}
func init() {
internet.RegisterNetworkConfigCreator(v2net.Network_TCP, func() interface{} {
return new(Config)
})
}