diff options
Diffstat (limited to 'src/bridge/bridge.hpp')
-rw-r--r-- | src/bridge/bridge.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bridge/bridge.hpp b/src/bridge/bridge.hpp index 37f5b05..2618ca6 100644 --- a/src/bridge/bridge.hpp +++ b/src/bridge/bridge.hpp @@ -81,6 +81,11 @@ public: */ void send_message(const Iid& iid, const std::string& nick, const std::string& body, const bool muc); /** + * Send a presence of type error, from a room. This is used to indicate + * why joining a room failed. + */ + void send_join_failed(const Iid& iid, const std::string& nick, const std::string& type, const std::string& condition, const std::string& text); + /** * Send an unavailable presence from this participant */ void send_muc_leave(Iid&& iid, std::string&& nick, const std::string& message, const bool self); |