Part of twisted.web.proxy View Source View In Hierarchy
This class implements a simple web proxy.
Since it inherits fromtwisted.protocols.http.HTTPChannel
,
to use it you should do something like this:
from twisted.web import http f = http.HTTPFactory() f.protocol = ProxyMake 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. |
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. Override to define behavior other than dropping the connection. |
Method | connectionLost | Called when the connection is shut down. |
Inherited from LineReceiver (via HTTPChannel):
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 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):
Method | callLater | Undocumented |
Method | resetTimeout | Reset the timeout count down |
Method | setTimeout | Change the timeout period |
Method | __timedOut | Undocumented |