From 6877ca5201c945d6c59b184c1ccb33f5ab1cc93a Mon Sep 17 00:00:00 2001 From: RPRX <63339210+RPRX@users.noreply.github.com> Date: Thu, 7 Nov 2024 03:50:28 +0000 Subject: [PATCH] XHTTP client: Allow different paths in U-D-S (#3977) --- transport/internet/splithttp/dialer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/internet/splithttp/dialer.go b/transport/internet/splithttp/dialer.go index ea935198..1c5300f3 100644 --- a/transport/internet/splithttp/dialer.go +++ b/transport/internet/splithttp/dialer.go @@ -275,7 +275,7 @@ func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.Me if requestURL2.Host == "" { requestURL2.Host = memory2.Destination.NetAddr() } - requestURL2.Path = requestURL.Path // the same + requestURL2.Path = config2.GetNormalizedPath() + sessionIdUuid.String() requestURL2.RawQuery = config2.GetNormalizedQuery() }