mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-10-31 00:08:08 -04:00
20 lines
314 B
Go
20 lines
314 B
Go
package tcp
|
|
|
|
import (
|
|
v2net "v2ray.com/core/common/net"
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
func (v *ConnectionReuse) IsEnabled() bool {
|
|
if v == nil {
|
|
return true
|
|
}
|
|
return v.Enable
|
|
}
|
|
|
|
func init() {
|
|
internet.RegisterNetworkConfigCreator(v2net.Network_TCP, func() interface{} {
|
|
return new(Config)
|
|
})
|
|
}
|