diff options
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. |