1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-03 05:23:16 +03:00
2020-12-11 13:05:29 +08:00

15 lines
266 B
Go

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