Part of twisted.internet.protocol View Source View In Hierarchy
Known subclasses: twisted.internet.protocol.ProcessProtocol, twisted.internet.protocol.Protocol
Some methods have helpful default implementations here so that they can
easily be shared, but otherwise the direct subclasses of this class are
more interesting, Protocol
and ProcessProtocol
.
Method | makeConnection | Make a connection to a transport and a server. |
Method | connectionMade | Called when a connection is made. |
This sets the 'transport' attribute of this Protocol, and calls the connectionMade() callback.
This may be considered the initializer of the protocol, because it is called when the connection is completed. For clients, this is called once the connection to the server has been established; for servers, this is called after an accept() call stops blocking and a socket has been received. If you need to send any greeting or initial message, do it here.