mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 14:43:03 +00:00
24 lines
401 B
Go
24 lines
401 B
Go
package httpupgrade
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
)
|
|
|
|
func (c *Config) GetNormalizedPath() string {
|
|
path := c.Path
|
|
if path == "" {
|
|
return "/"
|
|
}
|
|
if path[0] != '/' {
|
|
return "/" + path
|
|
}
|
|
return path
|
|
}
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
return new(Config)
|
|
}))
|
|
}
|