summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-01-23 21:17:27 +0000
committerSven Wegener <swegener@gentoo.org>2005-01-23 21:17:27 +0000
commitab08209c685f9ca9c3937edeb1f5f707afb1a270 (patch)
treee85990244914ca8bcec696a10dc7e92f61b2e25e /net-irc/dircproxy/files
parentlibGL.la fix (diff)
downloadgentoo-2-ab08209c685f9ca9c3937edeb1f5f707afb1a270.tar.gz
gentoo-2-ab08209c685f9ca9c3937edeb1f5f707afb1a270.tar.bz2
gentoo-2-ab08209c685f9ca9c3937edeb1f5f707afb1a270.zip
Added a patch from Adrian <adrian@planetcoding.net> that reduces the on-attach lag by sending all channels in NAMES and TOPIC requests at once. Closes bug #78341.
(Portage version: 2.0.51-r14)
Diffstat (limited to 'net-irc/dircproxy/files')
-rw-r--r--net-irc/dircproxy/files/1.1.0-less-lag-on-attach.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/net-irc/dircproxy/files/1.1.0-less-lag-on-attach.patch b/net-irc/dircproxy/files/1.1.0-less-lag-on-attach.patch
new file mode 100644
index 000000000000..c6e6248d34d4
--- /dev/null
+++ b/net-irc/dircproxy/files/1.1.0-less-lag-on-attach.patch
@@ -0,0 +1,53 @@
+--- src/irc_client.c 2005-01-06 02:48:12.964637427 +0100
++++ src/irc_client.c.lessflood 2005-01-06 02:47:50.433376383 +0100
+@@ -1910,13 +1910,34 @@
+ /* Recall channel log files, and get channel topic and members from server */
+ if (p->channels) {
+ struct ircchannel *c;
++ unsigned int cnames_length = 0;
++ char *cnames = 0;
++
++ c = p->channels;
++ while (c) {
++ if (!c->inactive && !c->unjoined) {
++ cnames_length += strlen(c->name) + 1; // +1 to hold comma
++ }
++
++ c = c->next;
++ }
++
++ if(cnames_length)
++ {
++ cnames = (char *)malloc(cnames_length + 1);
++ memset(cnames, 0, cnames_length + 1);
++ }
+
+ c = p->channels;
+ while (c) {
+ if (!c->inactive && !c->unjoined) {
+ ircclient_send_selfcmd(p, "JOIN", ":%s", c->name);
+- ircserver_send_command(p, "TOPIC", ":%s", c->name);
+- ircserver_send_command(p, "NAMES", ":%s", c->name);
++ if(cnames_length) {
++ if(c == p->channels) // first channel in list
++ sprintf(cnames, "%s", c->name);
++ else
++ sprintf(cnames, "%s,%s", cnames, c->name);
++ }
+
+ if (p->conn_class->chan_log_enabled) {
+ irclog_autorecall(p, c->name);
+@@ -1926,6 +1948,13 @@
+
+ c = c->next;
+ }
++
++ if(cnames_length)
++ {
++ ircserver_send_command(p, "TOPIC", ":%s", cnames);
++ ircserver_send_command(p, "NAMES", ":%s", cnames);
++ free(cnames);
++ }
+ }
+
+ /* Recall private log file */