Fix '?' at end of WebSocket path get escaped

This fix align sing-box's behaviour with V2Ray when it comes to processing ? at the end of WebSocket's path.
This commit is contained in:
Xiaokang Wang (Shelikhoo) 2023-04-12 00:25:27 +01:00 committed by 世界
parent f44f86b832
commit b54da9c6af
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -60,6 +60,10 @@ func NewClient(ctx context.Context, dialer N.Dialer, serverAddr M.Socksaddr, opt
if !strings.HasPrefix(uri.Path, "/") {
uri.Path = "/" + uri.Path
}
if strings.HasSuffix(uri.Path, "?") {
uri.ForceQuery = true
uri.Path = strings.TrimSuffix(uri.Path, "?")
}
headers := make(http.Header)
for key, value := range options.Headers {
headers[key] = value