mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 15:12:11 +02:00
Moved rewritten server redirection code from core to irc. This new code
should be able to do the redirecting a lot more error-proof. Changed lag-checking to use PINGs instead of NOTIFYs. This breaks scripts using redirection. Hopefully this doesn't break too much things in irssi :) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1980 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
712f3b383d
commit
850cf993eb
28 changed files with 908 additions and 786 deletions
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
#define MODULE_NAME "irc/notifylist"
|
||||
|
||||
#define ISON_EVENT "event 303"
|
||||
|
||||
typedef struct {
|
||||
char *nick;
|
||||
char *user, *host, *realname, *awaymsg;
|
||||
|
|
@ -22,6 +20,8 @@ typedef struct {
|
|||
} NOTIFY_NICK_REC;
|
||||
|
||||
typedef struct {
|
||||
int ison_count; /* number of ISON requests sent */
|
||||
|
||||
GSList *notify_users; /* NOTIFY_NICK_REC's of notifylist people who are in IRC */
|
||||
GSList *ison_tempusers; /* Temporary list for saving /ISON events.. */
|
||||
} MODULE_SERVER_REC;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue