mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 14:43:03 +00:00
21 lines
367 B
Go
21 lines
367 B
Go
package grpc
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
)
|
|
|
|
const protocolName = "grpc"
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
return new(Config)
|
|
}))
|
|
}
|
|
|
|
func (c *Config) getNormalizedName() string {
|
|
return url.PathEscape(c.ServiceName)
|
|
}
|