| 12345678910111213141516171819 | package tcpimport (	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)	})}
 |