diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-01-04 01:53:50 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-01-04 01:59:36 +0100 |
commit | fbec16f1a208881ea49923287aae27978d79681e (patch) | |
tree | aaa68a23a507e7f26899132865f65816315ce882 /src/irc | |
parent | e840704b58a984351971e8034e74f5e9fdfaf114 (diff) | |
download | biboumi-fbec16f1a208881ea49923287aae27978d79681e.tar.gz biboumi-fbec16f1a208881ea49923287aae27978d79681e.tar.bz2 biboumi-fbec16f1a208881ea49923287aae27978d79681e.tar.xz biboumi-fbec16f1a208881ea49923287aae27978d79681e.zip |
Possibility to change a channel's topic
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/irc_client.cpp | 5 | ||||
-rw-r--r-- | src/irc/irc_client.hpp | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp index 8a57371..644cfd1 100644 --- a/src/irc/irc_client.cpp +++ b/src/irc/irc_client.cpp @@ -122,6 +122,11 @@ void IrcClient::send_kick_command(const std::string& chan_name, const std::strin this->send_message(IrcMessage("KICK", {chan_name, target, reason})); } +void IrcClient::send_topic_command(const std::string& chan_name, const std::string& topic) +{ + this->send_message(IrcMessage("TOPIC", {chan_name, topic})); +} + void IrcClient::send_quit_command() { this->send_message(IrcMessage("QUIT", {"gateway shutdown"})); diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp index 96ded44..a058b19 100644 --- a/src/irc/irc_client.hpp +++ b/src/irc/irc_client.hpp @@ -97,6 +97,7 @@ public: * Send the KICK irc command */ void send_kick_command(const std::string& chan_name, const std::string& target, const std::string& reason); + void send_topic_command(const std::string& chan_name, const std::string& topic); /** * Send the QUIT irc command */ |