summaryrefslogtreecommitdiff
path: root/src/irc/irc_client.cpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-05-19 06:00:07 +0200
committerFlorent Le Coz <louiz@louiz.org>2015-05-19 06:21:59 +0200
commitfa466f33f4c8009e69fe0ebf31c7eef1c394377b (patch)
tree9d6f52a43d0e04962b5aed574c7b9690ff868104 /src/irc/irc_client.cpp
parent2195292919110bad41f507f45fa1b7d86a369539 (diff)
downloadbiboumi-fa466f33f4c8009e69fe0ebf31c7eef1c394377b.tar.gz
biboumi-fa466f33f4c8009e69fe0ebf31c7eef1c394377b.tar.bz2
biboumi-fa466f33f4c8009e69fe0ebf31c7eef1c394377b.tar.xz
biboumi-fa466f33f4c8009e69fe0ebf31c7eef1c394377b.zip
Ignore commands that flood the user with private messages when listing chans
ref #2472
Diffstat (limited to 'src/irc/irc_client.cpp')
-rw-r--r--src/irc/irc_client.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index 5f6aaaf..d048e47 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -459,6 +459,18 @@ void IrcClient::on_channel_message(const IrcMessage& message)
this->bridge->send_message(iid, nick, body, muc);
}
+void IrcClient::on_rpl_liststart(const IrcMessage&)
+{
+}
+
+void IrcClient::on_rpl_list(const IrcMessage&)
+{
+}
+
+void IrcClient::on_rpl_listend(const IrcMessage&)
+{
+}
+
void IrcClient::empty_motd(const IrcMessage& message)
{
(void)message;