summaryrefslogtreecommitdiff
path: root/src/irc/irc_client.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2017-04-21 22:47:25 +0200
committerlouiz’ <louiz@louiz.org>2017-04-21 22:47:25 +0200
commitf588ce071eb99ce80fd25f899679e902214606cd (patch)
tree5001a445492d22d94c9518b684c840a372874255 /src/irc/irc_client.cpp
parent3666f35e0e884068437fe520dbd5f087bea4d946 (diff)
downloadbiboumi-f588ce071eb99ce80fd25f899679e902214606cd.tar.gz
biboumi-f588ce071eb99ce80fd25f899679e902214606cd.tar.bz2
biboumi-f588ce071eb99ce80fd25f899679e902214606cd.tar.xz
biboumi-f588ce071eb99ce80fd25f899679e902214606cd.zip
Group simultaneous JOINs into a single command, to avoid flooding
We still split the JOINs with a key and the ones without
Diffstat (limited to 'src/irc/irc_client.cpp')
-rw-r--r--src/irc/irc_client.cpp30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index 1f562fe..ea5afd2 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -846,8 +846,36 @@ void IrcClient::on_welcome_message(const IrcMessage& message)
// Install a repeated events to regularly send a PING
TimedEventsManager::instance().add_event(TimedEvent(240s, std::bind(&IrcClient::send_ping_command, this),
"PING"s + this->hostname + this->bridge.get_jid()));
+ std::string channels{};
+ std::string channels_with_key{};
+ std::string keys{};
+
for (const auto& tuple: this->channels_to_join)
- this->send_join_command(std::get<0>(tuple), std::get<1>(tuple));
+ {
+ const auto& chan = std::get<0>(tuple);
+ const auto& key = std::get<1>(tuple);
+ if (chan.empty())
+ continue;
+ if (!key.empty())
+ {
+ if (!keys.empty())
+ keys += ",";
+ keys += key;
+ if (!channels_with_key.empty())
+ channels_with_key += ",";
+ channels_with_key += chan;
+ }
+ else
+ {
+ if (!channels.empty())
+ channels += ",";
+ channels += chan;
+ }
+ }
+ if (!channels.empty())
+ this->send_join_command(channels, {});
+ if (!channels_with_key.empty())
+ this->send_join_command(channels_with_key, keys);
this->channels_to_join.clear();
// Indicate that the dummy channel is joined as well, if needed
if (this->dummy_channel.joining)