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:
parent
c5acf96506
commit
e4f1106f09
|
@ -444,7 +444,7 @@ public abstract class ProxyProtocolClientConnectionFactory implements ClientConn
|
|||
|
||||
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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue