mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-09 03:37:37 -05:00
24 lines
405 B
Go
24 lines
405 B
Go
package websocket
|
|
|
|
import (
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
func (c *Config) GetNormailzedPath() string {
|
|
path := c.Path
|
|
if len(path) == 0 {
|
|
return "/"
|
|
}
|
|
if path[0] != '/' {
|
|
return "/" + path
|
|
}
|
|
return path
|
|
}
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterProtocolConfigCreator(internet.TransportProtocol_WebSocket, func() interface{} {
|
|
return new(Config)
|
|
}))
|
|
}
|