summaryrefslogtreecommitdiff
path: root/src/irc
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc')
-rw-r--r--src/irc/irc_client.cpp4
-rw-r--r--src/irc/irc_client.hpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index 5f70efb..c149311 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -192,12 +192,12 @@ bool IrcClient::send_channel_message(const std::string& chan_name, const std::st
return true;
}
-void IrcClient::send_private_message(const std::string& username, const std::string& body)
+void IrcClient::send_private_message(const std::string& username, const std::string& body, const std::string& type)
{
std::string::size_type pos = 0;
while (pos < body.size())
{
- this->send_message(IrcMessage("PRIVMSG", {username, body.substr(pos, 400)}));
+ this->send_message(IrcMessage(std::string(type), {username, body.substr(pos, 400)}));
pos += 400;
}
diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp
index 849190a..a2e2afe 100644
--- a/src/irc/irc_client.hpp
+++ b/src/irc/irc_client.hpp
@@ -88,7 +88,7 @@ public:
/**
* Send a PRIVMSG command for an user
*/
- void send_private_message(const std::string& username, const std::string& body);
+ void send_private_message(const std::string& username, const std::string& body, const std::string& type);
/**
* Send the PART irc command
*/