Home | Trees | Index | Help |
---|
Package twisted :: Package protocols :: Module irc :: Class DccChat |
|
BaseProtocol
--+ |Protocol
--+ |LineReceiver
--+ |Ephemeral
--+ | DccChat
Direct Client Connection protocol type CHAT.
DCC CHAT is really just your run o' the mill basic.LineReceiver protocol. This class only varies from that slightly, accepting either LF or CR LF for a line delimeter for incoming messages while always using CR LF for outgoing.
The lineReceived method implemented here uses the DCC connection's 'client' attribute (provided upon construction) to deliver incoming lines from the DCC chat via IRCClient's normal privmsg interface. That's something of a spoof, which you may well want to override.Method Summary | |
---|---|
Initialize a new DCC CHAT session. | |
__getstate__(self)
(inherited from Ephemeral )
| |
__setstate__(self,
state)
(inherited from Ephemeral )
| |
Clear buffered data. (inherited from LineReceiver )
| |
(Deprecated) (inherited from Protocol )
| |
Called when the connection is shut down. (inherited from Protocol )
| |
Called when a connection is made. (inherited from BaseProtocol )
| |
Protocol.dataReceived. | |
Called when the maximum line length has been reached. (inherited from LineReceiver )
| |
Override this for when each line is received. | |
Make a connection to a transport and a server. (inherited from BaseProtocol )
| |
Override this for when raw data is received. (inherited from LineReceiver )
| |
Sends a line to the other end of the connection. (inherited from LineReceiver )
| |
Sets the line-mode of this receiver. (inherited from LineReceiver )
| |
Sets the raw mode of this receiver. (inherited from LineReceiver )
|
Class Variable Summary | |
---|---|
str |
buffer
|
NoneType |
client
|
str |
delimiter
|
NoneType |
queryData
|
NoneType |
remoteParty
|
Method Details |
---|
__init__(self,
client,
queryData=None)
|
dataReceived(self, data)Protocol.dataReceived. Translates bytes into lines, and calls lineReceived (or rawDataReceived, depending on mode.)
|
lineReceived(self, line)Override this for when each line is received.
|
Class Variable Details |
---|
buffer
|
client
|
delimiter
|
queryData
|
remoteParty
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 1.1 on Fri Jun 27 03:48:32 2003 | http://epydoc.sf.net |