mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-22 13:16:07 +03:00
17 lines
293 B
Go
17 lines
293 B
Go
|
// +build !confonly
|
||
|
|
||
|
package tcp
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/v1/common"
|
||
|
"github.com/xtls/xray-core/v1/transport/internet"
|
||
|
)
|
||
|
|
||
|
const protocolName = "tcp"
|
||
|
|
||
|
func init() {
|
||
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
||
|
return new(Config)
|
||
|
}))
|
||
|
}
|