mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 15:42:26 +02:00
-querychans option for servers and ircnets which specifies how many
channels to query in one line with MODE/WHO commands after joined to a number of channels. Default is 10 which works usually, with some very stupid servers (just found one) this has to be set to 1 however. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@981 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
e6cc73bd4b
commit
8d98e80a6b
10 changed files with 41 additions and 12 deletions
|
|
@ -27,6 +27,8 @@ typedef struct {
|
|||
|
||||
int max_cmds_at_once;
|
||||
int cmd_queue_speed;
|
||||
int max_query_chans;
|
||||
|
||||
int max_kicks, max_msgs, max_modes, max_whois;
|
||||
} IRC_SERVER_CONNECT_REC;
|
||||
|
||||
|
|
@ -66,6 +68,8 @@ typedef struct {
|
|||
|
||||
int max_cmds_at_once; /* How many messages can be sent immediately before timeouting starts */
|
||||
int cmd_queue_speed; /* Timeout between sending commands */
|
||||
int max_query_chans; /* when syncing, max. number of channels to
|
||||
put in one MODE/WHO command */
|
||||
|
||||
GSList *idles; /* Idle queue - send these commands to server
|
||||
if there's nothing else to do */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue