Fixes #4421 - HttpClient support for PROXY protocol.

Fixed visibility of ProxyProtocolConnection.
Must be protected because it's the return type
of protected methods.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2019-12-19 10:11:54 +01:00
parent c5acf96506
commit e4f1106f09
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ public abstract class ProxyProtocolClientConnectionFactory implements ClientConn
protected abstract ProxyProtocolConnection newProxyProtocolConnection(EndPoint endPoint, Map<String, Object> context); protected abstract ProxyProtocolConnection newProxyProtocolConnection(EndPoint endPoint, Map<String, Object> context);
private abstract static class ProxyProtocolConnection extends AbstractConnection implements Callback protected abstract static class ProxyProtocolConnection extends AbstractConnection implements Callback
{ {
protected static final Logger LOG = Log.getLogger(ProxyProtocolConnection.class); protected static final Logger LOG = Log.getLogger(ProxyProtocolConnection.class);