mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 18:06:15 -05:00
13 lines
175 B
Go
13 lines
175 B
Go
package httpupgrade
|
|
|
|
func (c *Config) GetNormalizedPath() string {
|
|
path := c.Path
|
|
if path == "" {
|
|
return "/"
|
|
}
|
|
if path[0] != '/' {
|
|
return "/" + path
|
|
}
|
|
return path
|
|
}
|