diff options
author | Jilles Tjoelker <jilles@irssi.org> | 2007-10-31 22:58:44 +0000 |
---|---|---|
committer | jilles <jilles@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2007-10-31 22:58:44 +0000 |
commit | 78dad04c7b21342c9b6dddc7ea9f1b34f61e6984 (patch) | |
tree | 4432b0b216434973eaa0a24a991daa9e8e74c816 /src/irc/notifylist/module.h | |
parent | d9782fab84a66a04eb42bb8804236a860b799574 (diff) | |
download | irssi-78dad04c7b21342c9b6dddc7ea9f1b34f61e6984.zip |
Remove /notify -idle, it can only work with not-nice automated remote whois.
(causes infrequent "server load too heavy" etc)
If people really want this, they should write a script.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4632 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/notifylist/module.h')
-rw-r--r-- | src/irc/notifylist/module.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/irc/notifylist/module.h b/src/irc/notifylist/module.h index d88058e4..c7239a88 100644 --- a/src/irc/notifylist/module.h +++ b/src/irc/notifylist/module.h @@ -6,15 +6,12 @@ typedef struct { char *nick; char *user, *host, *realname, *awaymsg; - int idle_time; unsigned int host_ok:1; /* host matches the one in notifylist = this is the right person*/ unsigned int away_ok:1; /* not away, or we don't care about it */ - unsigned int idle_ok:1; /* idle time is low enough, or we don't care about it */ unsigned int away:1; /* nick is away */ unsigned int join_announced:1; /* join to IRC has been announced */ - unsigned int idle_changed:1; /* idle time is lower than in last check */ time_t last_whois; } NOTIFY_NICK_REC; |