1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-08 18:36:45 -05:00
v2fly/transport/internet/tcp/config.go
Jebbs 7c1ab06206
v5: Remove v2ctl & wv2ray (#488)
* remove v2ctl, wv2ray
* remove v2ctl, wv2ray build scripts
* remove infra/control/main
* remove !confonly flag
* remove ctlcmd package
* remove Confgi.Override func
* move commands package into main
2020-12-04 22:32:55 +08:00

15 lines
244 B
Go

package tcp
import (
"v2ray.com/core/common"
"v2ray.com/core/transport/internet"
)
const protocolName = "tcp"
func init() {
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
return new(Config)
}))
}