2016-06-14 20:54:08 +00:00
|
|
|
package tcp
|
|
|
|
|
2016-10-02 21:43:58 +00:00
|
|
|
import (
|
2017-01-12 11:54:34 +00:00
|
|
|
"v2ray.com/core/common"
|
2016-10-02 21:43:58 +00:00
|
|
|
"v2ray.com/core/transport/internet"
|
2016-06-14 20:54:08 +00:00
|
|
|
)
|
2016-10-02 21:43:58 +00:00
|
|
|
|
2018-08-06 11:48:35 +00:00
|
|
|
const protocolName = "tcp"
|
|
|
|
|
2016-10-02 21:43:58 +00:00
|
|
|
func init() {
|
2018-08-06 11:48:35 +00:00
|
|
|
common.Must(internet.RegisterProtocolConfigCreatorByName(protocolName, func() interface{} {
|
2016-10-02 21:43:58 +00:00
|
|
|
return new(Config)
|
2017-01-12 11:54:34 +00:00
|
|
|
}))
|
2016-10-02 21:43:58 +00:00
|
|
|
}
|