Part of twisted.words.protocols.irc View Source View In Hierarchy
Known subclasses: twisted.words.protocols.irc.DccFileReceive
This does enough to keep the other guy talking, but you'll want to extend my dataReceived method to *do* something with the data I get.
| Method | __init__ | Undocumented |
| Method | dataReceived | Called when data is received. |
Inherited from Protocol:
| Method | logPrefix | Return a prefix matching the class name, to identify log messages related to this protocol instance. |
| Method | connectionLost | Called when the connection is shut down. |
Inherited from BaseProtocol (via Protocol):
| Method | makeConnection | Make a connection to a transport and a server. |
| Method | connectionMade | Called when a connection is made. |
Inherited from Ephemeral:
| Method | __getstate__ | Undocumented |
| Method | __setstate__ | Undocumented |
Warning: This just acknowledges to the remote host that the data has been received; it doesn't *do* anything with the data, so you'll want to override this.