diff options
author | Timo Sirainen <cras@irssi.org> | 1999-09-18 16:22:32 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 1999-09-18 16:22:32 +0000 |
commit | 74d81cf7c704d642d36fca477d50ee0bbe268b24 (patch) | |
tree | 1ecee03b308b67f6856b90ae4306fa9e8aa3b2c2 | |
parent | 313c44eb2e5badfb5a392f37b91422c58fedba38 (diff) | |
download | irssi-74d81cf7c704d642d36fca477d50ee0bbe268b24.zip |
New server specific option: "Send queries for all channels at once". It's
faster to use it but some servers (I've found only one so far..) hang the
connection with this.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@26 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/common-setup.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common-setup.h b/src/common-setup.h index 167bc9e6..c61caf86 100644 --- a/src/common-setup.h +++ b/src/common-setup.h @@ -97,6 +97,8 @@ typedef struct gchar *password; gint port; gboolean autoconnect; + gboolean query_multichan; /* speeding up channel syncing, + all servers don't like this. */ time_t last_connect; /* to avoid reconnecting too fast.. */ } SETUP_SERVER_REC; |