Part of twisted.web.proxy View Source View In Hierarchy
Since it inherits from twisted.web.http.HTTPChannel
,
to use it you should do something like this:
from twisted.web import http f = http.HTTPFactory() f.protocol = Proxy
Make the HTTPFactory a listener on a port as per usual, and you have a fully-functioning web proxy!
Inherited from HTTPChannel:
Method | __init__ | Undocumented |
Method | connectionMade | Called when a connection is made. |
Method | lineReceived | Override this for when each line is received. |
Method | headerReceived | Do pre-processing (for content-length) and store this header away. Enforce the per-request header limit. |
Method | allContentReceived | Undocumented |
Method | rawDataReceived | Override this for when raw data is received. |
Method | allHeadersReceived | Undocumented |
Method | checkPersistence | Check if the channel should close or not. |
Method | requestDone | Called by first request in queue when it is done. |
Method | timeoutConnection | Called when the connection times out. |
Method | connectionLost | Called when the connection is shut down. |
Instance Variable | _transferDecoder | None or an instance of _ChunkedTransferDecoder
if the request body uses the chunked Transfer-Encoding. |
Method | _finishRequestBody | Undocumented |
Inherited from LineReceiver (via HTTPChannel):
Class Variable | delimiter | The line-ending delimiter to use. By default this is '\r\n'. |
Class Variable | MAX_LENGTH | The maximum length of a line to allow (If a sent line is longer than this, the connection is dropped). Default is 16384. |
Method | clearLineBuffer | Clear buffered data. |
Method | dataReceived | Protocol.dataReceived. Translates bytes into lines, and calls lineReceived (or rawDataReceived, depending on mode.) |
Method | setLineMode | Sets the line-mode of this receiver. |
Method | setRawMode | Sets the raw mode of this receiver. Further data received will be sent to rawDataReceived rather than lineReceived. |
Method | sendLine | Sends a line to the other end of the connection. |
Method | lineLengthExceeded | Called when the maximum line length has been reached. Override if it needs to be dealt with in some special way. |
Inherited from Protocol (via HTTPChannel, LineReceiver):
Method | logPrefix | Return a prefix matching the class name, to identify log messages related to this protocol instance. |
Inherited from BaseProtocol (via HTTPChannel, LineReceiver, Protocol):
Method | makeConnection | Make a connection to a transport and a server. |
Inherited from _PauseableMixin (via HTTPChannel, LineReceiver):
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Inherited from TimeoutMixin (via HTTPChannel):
Class Variable | timeOut | The number of seconds after which to timeout the connection. |
Method | callLater | Wrapper around reactor.callLater for test purpose. |
Method | resetTimeout | Reset the timeout count down. |
Method | setTimeout | Change the timeout period |
Method | __timedOut | Undocumented |