diff --git a/transport/internet/splithttp/config.go b/transport/internet/splithttp/config.go index f160db31..f1ccc493 100644 --- a/transport/internet/splithttp/config.go +++ b/transport/internet/splithttp/config.go @@ -34,12 +34,13 @@ func (c *Config) GetNormalizedQuery() string { query = pathAndQuery[1] } - /* - if query != "" { - query += "&" - } - query += "x_version=" + core.Version() - */ + if query != "" { + query += "&" + } + + // query += "x_version=" + core.Version() + + query += "x_padding=" + strings.Repeat("X", int(c.GetNormalizedXPaddingBytes().From)) return query }