public abstract class AbstractHttpLogicHandler extends AbstractProxyLogicHandler
AbstractProxyLogicHandler implementations.
Provides HTTP request encoding/response decoding functionality.| 构造器和说明 |
|---|
AbstractHttpLogicHandler(ProxyIoSession proxyIoSession)
Creates a new
AbstractHttpLogicHandler. |
| 限定符和类型 | 方法和说明 |
|---|---|
protected HttpProxyResponse |
decodeResponse(java.lang.String response)
Parse a HTTP response from the proxy server.
|
abstract void |
handleResponse(HttpProxyResponse response)
Handles a HTTP response from the proxy server.
|
void |
messageReceived(IoFilter.NextFilter nextFilter,
IoBuffer buf)
Handles incoming data during the handshake process.
|
void |
writeRequest(IoFilter.NextFilter nextFilter,
HttpProxyRequest request)
Calls writeRequest0(NextFilter, HttpProxyRequest) to write the request.
|
closeSession, closeSession, enqueueWriteRequest, flushPendingWriteRequests, getProxyFilter, getProxyIoSession, getSession, isHandshakeComplete, setHandshakeComplete, writeDataclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdoHandshakepublic AbstractHttpLogicHandler(ProxyIoSession proxyIoSession)
AbstractHttpLogicHandler.proxyIoSession - the ProxyIoSession in use.public void messageReceived(IoFilter.NextFilter nextFilter, IoBuffer buf) throws ProxyAuthException
nextFilter - the next filterbuf - the buffer holding received dataProxyAuthException - if authentication failspublic abstract void handleResponse(HttpProxyResponse response) throws ProxyAuthException
response - The response.ProxyAuthException - If we get an error during the proxy authenticationpublic void writeRequest(IoFilter.NextFilter nextFilter, HttpProxyRequest request)
nextFilter - the next filterrequest - the http requestprotected HttpProxyResponse decodeResponse(java.lang.String response) throws java.lang.Exception
response - The response string.java.lang.Exception - If we get an error while decoding the response