diff options
author | Tom Feist <shabble@cowu.be> | 2010-07-16 19:22:49 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-07-16 19:22:49 +0000 |
commit | 241fb7c85ce61372385b0beabf5bf3bd3211338e (patch) | |
tree | 7553b34aaf6d0965a6ec960d1a33965fe95940b5 /docs/Irssi/Dcc.pod | |
parent | removed irssi/window since it was only a placeholder (diff) | |
download | irssi-scripts-241fb7c85ce61372385b0beabf5bf3bd3211338e.tar.gz irssi-scripts-241fb7c85ce61372385b0beabf5bf3bd3211338e.zip |
moved process to ui namespace
Diffstat (limited to '')
-rw-r--r-- | docs/Irssi/Dcc.pod | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/docs/Irssi/Dcc.pod b/docs/Irssi/Dcc.pod index 546f112..5a68dd4 100644 --- a/docs/Irssi/Dcc.pod +++ b/docs/Irssi/Dcc.pod @@ -7,6 +7,7 @@ Irssi::Dcc =head1 FIELDS Dcc->{} + type - Type of the DCC: chat, send, get orig_type - Original DCC type that was sent to us - same as type except GET and SEND are swapped @@ -29,11 +30,13 @@ Dcc->{} transfd - Bytes transferred Dcc::Chat->{} + id - Unique identifier - usually same as nick mirc_ctcp - Send CTCPs without the CTCP_MESSAGE prefix connection_lost - Other side closed connection Dcc::Get->{} + (..contains all the same data as core Dcc object..) size - File size skipped - Bytes skipped from start (resuming file) @@ -44,6 +47,7 @@ Dcc::Get->{} file_quoted - 1 if file name was received quoted ("file name") Dcc::Send->{} + (..contains all the same data as core Dcc object..) size - File size skipped - Bytes skipped from start (resuming file) @@ -55,11 +59,14 @@ Dcc::Send->{} =head1 METHODS -Dcc::destroy() - Destroy DCC connection. +=head2 C<destroy> + +Destroy DCC connection. + +=head2 C<chat_send $data> + +Send `data' to dcc chat. -Dcc::chat_send(data) - Send `data' to dcc chat. +=head2 C<ctcp_message $target, $notice, $msg> -Dcc::ctcp_message(target, notice, msg) - Send a CTCP message/notify to target. +Send a CTCP message/notify to target. |