diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-11-12 04:05:56 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-11-12 06:17:25 +0100 |
commit | e1d69806ed7c92bdfe1bf632064bf68b3d1d266b (patch) | |
tree | a2aa251c02c074e7f0babd970bff4388f22310b4 /src/irc | |
parent | dccd8039ad44669452fa47d9b620114fd97af604 (diff) | |
download | biboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.tar.gz biboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.tar.bz2 biboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.tar.xz biboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.zip |
Rename iq_responder_callback_t to irc_… and add the equivalent to wait for iqs
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/iid.hpp | 2 | ||||
-rw-r--r-- | src/irc/irc_client.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/iid.hpp b/src/irc/iid.hpp index c547dea..d30cbaa 100644 --- a/src/irc/iid.hpp +++ b/src/irc/iid.hpp @@ -42,7 +42,7 @@ class Iid { public: - explicit Iid(const std::string& iid); + Iid(const std::string& iid); explicit Iid(const Iid&); explicit Iid(); diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp index f9ebfa0..90f0644 100644 --- a/src/irc/irc_client.cpp +++ b/src/irc/irc_client.cpp @@ -156,7 +156,7 @@ void IrcClient::parse_in_buffer(const size_t) else log_info("No handler for command " << message.command); // Try to find a waiting_iq, which response will be triggered by this IrcMessage - this->bridge->trigger_response_iq(this->hostname, message); + this->bridge->trigger_on_irc_message(this->hostname, message); } } |