diff options
author | Timo Sirainen <cras@irssi.org> | 2004-02-18 15:07:44 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2004-02-18 15:07:44 +0000 |
commit | 77cd7170f2ddb3e64e4f4b0fb95853f81cb1e23a (patch) | |
tree | d3974e701e8a2b3bbb33845315866bfaed2d7a96 /docs | |
parent | f2e9b8b3958937ee34d183c332f3928502d39d10 (diff) | |
download | irssi-77cd7170f2ddb3e64e4f4b0fb95853f81cb1e23a.zip |
Added "server sendmsg" signal to replace server->send_message().
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3226 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs')
-rw-r--r-- | docs/perl.txt | 7 | ||||
-rw-r--r-- | docs/signals.txt | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/perl.txt b/docs/perl.txt index cf390a74..9d866ef4 100644 --- a/docs/perl.txt +++ b/docs/perl.txt @@ -935,6 +935,13 @@ Server::ctcp_send_reply(data) is the full raw command to be sent to server, like "NOTICE nick :\001VERSION irssi\001" +Server::isupport(name) + Returns the value of the named item in the ISUPPORT (005) numeric to the + script. If the item is not present returns undef, if the item has no value + then "" is returned use defined $server->isupport("name") if you need to + check whether a property is present. + See http://www.ietf.org/internet-drafts/draft-brocklesby-irc-isupport-01.txt + for more information on the ISUPPORT numeric. *** IRC channels diff --git a/docs/signals.txt b/docs/signals.txt index 1cc24a4f..62911971 100644 --- a/docs/signals.txt +++ b/docs/signals.txt @@ -84,6 +84,7 @@ server.c: "server connect failed", SERVER_REC "server disconnected", SERVER_REC "server quit", SERVER_REC, char *msg + "server sendmsg", SERVER_REC, char *target, char *msg, int target_type settings.c: "setup changed" |