public final class HttpProxyHandler extends ProxyHandler
ChannelHandler.Sharable, ChannelHandler.Skip| Constructor and Description |
|---|
HttpProxyHandler(SocketAddress proxyAddress) |
HttpProxyHandler(SocketAddress proxyAddress,
String username,
String password) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
addCodec(ChannelHandlerContext ctx)
Adds the codec handlers required to communicate with the proxy server.
|
String |
authScheme()
Returns the name of the authentication scheme in use.
|
protected boolean |
handleResponse(ChannelHandlerContext ctx,
Object response)
Handles the message received from the proxy server.
|
protected Object |
newInitialMessage(ChannelHandlerContext ctx)
Returns a new message that is sent at first time when the connection to the proxy server has been established.
|
String |
password() |
String |
protocol()
Returns the name of the proxy protocol in use.
|
protected void |
removeDecoder(ChannelHandlerContext ctx)
Removes the decoders added in
ProxyHandler.addCodec(ChannelHandlerContext). |
protected void |
removeEncoder(ChannelHandlerContext ctx)
Removes the encoders added in
ProxyHandler.addCodec(ChannelHandlerContext). |
String |
username() |
channelActive, channelInactive, channelRead, channelReadComplete, connect, connectFuture, connectTimeoutMillis, destinationAddress, exceptionCaught, exceptionMessage, flush, handlerAdded, isConnected, proxyAddress, sendToProxyServer, setConnectTimeoutMillis, writebind, channelRegistered, channelUnregistered, channelWritabilityChanged, close, deregister, disconnect, handlerRemoved, isSharable, read, userEventTriggeredpublic HttpProxyHandler(SocketAddress proxyAddress)
public HttpProxyHandler(SocketAddress proxyAddress, String username, String password)
public String protocol()
ProxyHandlerprotocol in class ProxyHandlerpublic String authScheme()
ProxyHandlerauthScheme in class ProxyHandlerpublic String username()
public String password()
protected void addCodec(ChannelHandlerContext ctx) throws Exception
ProxyHandleraddCodec in class ProxyHandlerExceptionprotected void removeEncoder(ChannelHandlerContext ctx) throws Exception
ProxyHandlerProxyHandler.addCodec(ChannelHandlerContext).removeEncoder in class ProxyHandlerExceptionprotected void removeDecoder(ChannelHandlerContext ctx) throws Exception
ProxyHandlerProxyHandler.addCodec(ChannelHandlerContext).removeDecoder in class ProxyHandlerExceptionprotected Object newInitialMessage(ChannelHandlerContext ctx) throws Exception
ProxyHandlernewInitialMessage in class ProxyHandlernull if the proxy server is expected to send the first message insteadExceptionprotected boolean handleResponse(ChannelHandlerContext ctx, Object response) throws Exception
ProxyHandlerhandleResponse in class ProxyHandlertrue if the connection to the destination has been established,
false if the connection to the destination has not been established and more messages are
expected from the proxy serverExceptionCopyright © 2008–2015 The Netty Project. All rights reserved.