mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-01-02 15:25:28 -05:00
13 lines
217 B
Go
13 lines
217 B
Go
package tcp
|
|
|
|
import (
|
|
v2net "v2ray.com/core/common/net"
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
func init() {
|
|
internet.RegisterNetworkConfigCreator(v2net.Network_TCP, func() interface{} {
|
|
return new(Config)
|
|
})
|
|
}
|