diff options
author | Timo Sirainen <cras@irssi.org> | 2000-03-11 18:39:23 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-03-11 18:39:23 +0000 |
commit | efd610b6d210edd0a46393c1e900dec04ef01ee4 (patch) | |
tree | 07670782a7c2712b64c1f2daa78d0e632e5b8a7e | |
parent | 04ae11e7b5ba5ae9314aa950c3b2d4f0c5a40b2d (diff) | |
download | irssi-efd610b6d210edd0a46393c1e900dec04ef01ee4.zip |
Irssi::setup_get() for Perl.
Option: show timestamps once only after a specified time of inactivity
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@142 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | docs/PERL | 18 | ||||
-rw-r--r-- | docs/SIGNALS | 3 |
2 files changed, 20 insertions, 1 deletions
@@ -116,6 +116,9 @@ Channel::command(cmd) Server::printtext(channel, level, str) Print `str'. +setup_get(option) + Get value of `option' from setup and return it. + *** Message levels @@ -427,6 +430,21 @@ Dcc dcc_find_by_port(nick, port) Find DCC connection by port. + *** Reconnects + +Reconnect::values() + Get some information about reconnect. This function returns a reference to + hash table. Hash table has keys: + "tag" - Unique numeric tag + "address" - Address where we're going to connect + "password" - Password we use in connection + "port" - Port where we're going to connect + "ircnet" - IRC network + "nick" - Nick we want to use + "channels" - Join to these channels once connected + "next_connect" - Unix time stamp when the next connection occurs + + *** Netsplits Netsplit::values() diff --git a/docs/SIGNALS b/docs/SIGNALS index a70b060a..1f2785de 100644 --- a/docs/SIGNALS +++ b/docs/SIGNALS @@ -100,7 +100,8 @@ server.c: server-reconnect.c: - "server reconnect removed", RECONNECT_REC + "server reconnect new", RECONNECT_REC + "server reconnect remove", RECONNECT_REC "server reconnect not found", char *tag signal.c: |