Skip to content

Commit

Permalink
Fixes #5079 - :authority header for IPv6 address not having square br…
Browse files Browse the repository at this point in the history
…ackets.

Updates after review.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
sbordet committed Aug 11, 2020
1 parent 867621a commit 897e766
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -64,6 +64,7 @@
import org.eclipse.jetty.io.MappedByteBufferPool;
import org.eclipse.jetty.io.ssl.SslClientConnectionFactory;
import org.eclipse.jetty.util.Fields;
import org.eclipse.jetty.util.HostPort;
import org.eclipse.jetty.util.Jetty;
import org.eclipse.jetty.util.ProcessorUtils;
import org.eclipse.jetty.util.Promise;
Expand Down Expand Up @@ -1163,7 +1164,7 @@ protected HttpField getAcceptEncodingField()
@Deprecated
protected String normalizeHost(String host)
{
return host;
return HostPort.normalizeHost(host);
}

public static int normalizePort(String scheme, int port)
Expand Down

0 comments on commit 897e766

Please sign in to comment.