diff options
Diffstat (limited to 'src/irc/irc_client.hpp')
-rw-r--r-- | src/irc/irc_client.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp index 628f547..5efecc6 100644 --- a/src/irc/irc_client.hpp +++ b/src/irc/irc_client.hpp @@ -144,6 +144,10 @@ public: */ void on_isupport_message(const IrcMessage& message); /** + * Does nothing yet. Isn’t that duplicating features from 005? + */ + void on_server_myinfo(const IrcMessage& message); + /** * Just empty the motd we kept as a string */ void empty_motd(const IrcMessage& message); @@ -195,6 +199,10 @@ public: */ void on_topic_received(const IrcMessage& message); /** + * Empty the topic + */ + void on_empty_topic(const IrcMessage& message); + /** * The channel has been completely joined (self presence, topic, all names * received etc), send the self presence and topic to the XMPP user. */ |