class documentation

class IdentClient(basic.LineOnlyReceiver): (source)

View In Hierarchy

Undocumented

Method __init__ Undocumented
Method connection​Lost Called when the connection is shut down.
Method line​Received Override this for when each line is received.
Method lookup Lookup user information about the specified address pair.
Method parse​Response Undocumented
Class Variable error​Types Undocumented
Instance Variable queries Undocumented

Inherited from LineOnlyReceiver:

Method data​Received Translates bytes into lines, and calls lineReceived.
Method line​Length​Exceeded Called when the maximum line length has been reached. Override if it needs to be dealt with in some special way.
Method send​Line Sends a line to the other end of the connection.
Constant 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.
Class Variable delimiter The line-ending delimiter to use. By default this is b'\r\n'.
Instance Variable _buffer Undocumented

Inherited from Protocol (via LineOnlyReceiver):

Method log​Prefix Return a prefix matching the class name, to identify log messages related to this protocol instance.
Class Variable factory Undocumented

Inherited from BaseProtocol (via LineOnlyReceiver, Protocol):

Method connection​Made Called when a connection is made.
Method make​Connection Make a connection to a transport and a server.
Instance Variable connected Undocumented
Instance Variable transport Undocumented
def __init__(self): (source)

Undocumented

def connectionLost(self, reason): (source)

Called when the connection is shut down.

Clear any circular references here, and any external references to this Protocol. The connection has been closed.

Parameters
reason:twisted.python.failure.FailureUndocumented
def lineReceived(self, line): (source)
Override this for when each line is received.
Parameters
line:bytesThe line which was received with the delimiter removed.
def lookup(self, portOnServer, portOnClient): (source)
Lookup user information about the specified address pair.
def parseResponse(self, deferred, line): (source)

Undocumented

errorTypes = (source)

Undocumented

queries: list = (source)

Undocumented