diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-05-07 17:01:17 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-05-07 17:01:17 +0200 |
commit | 0a6b673b14efc4f623ea445045e6fc60e9842a25 (patch) | |
tree | 88fef4dced68ef3c616fe1575d5c542b0474b56a /src/irc/irc_client.hpp | |
parent | e24ed4f70c22142029fa8e6cf5b874e8bc261bc3 (diff) | |
download | biboumi-0a6b673b14efc4f623ea445045e6fc60e9842a25.tar.gz biboumi-0a6b673b14efc4f623ea445045e6fc60e9842a25.tar.bz2 biboumi-0a6b673b14efc4f623ea445045e6fc60e9842a25.tar.xz biboumi-0a6b673b14efc4f623ea445045e6fc60e9842a25.zip |
Support raw IRC messages
Messages received on an IRC server JID are forwarded as raw IRC messages.
fix #2486
Diffstat (limited to 'src/irc/irc_client.hpp')
-rw-r--r-- | src/irc/irc_client.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp index 03951be..08021c1 100644 --- a/src/irc/irc_client.hpp +++ b/src/irc/irc_client.hpp @@ -66,6 +66,7 @@ public: * for send events to be ready) */ void send_message(IrcMessage&& message); + void send_raw(const std::string& txt); /** * Send the PONG irc command */ |