summaryrefslogtreecommitdiff
path: root/src/bridge/bridge.hpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-03-23 16:16:30 +0100
committerlouiz’ <louiz@louiz.org>2018-03-23 16:16:30 +0100
commite2fc3cf68e1dc145e75fe67f2543765ff00ba839 (patch)
tree3064b77e3d44deb0e643477382e218893c7389e9 /src/bridge/bridge.hpp
parentcdace80758e2ee41f33824ad7f52a369c42a4a89 (diff)
downloadbiboumi-e2fc3cf68e1dc145e75fe67f2543765ff00ba839.tar.gz
biboumi-e2fc3cf68e1dc145e75fe67f2543765ff00ba839.tar.bz2
biboumi-e2fc3cf68e1dc145e75fe67f2543765ff00ba839.tar.xz
biboumi-e2fc3cf68e1dc145e75fe67f2543765ff00ba839.zip
Properly handle force-join presences by sending everything in return
fix #3305
Diffstat (limited to 'src/bridge/bridge.hpp')
-rw-r--r--src/bridge/bridge.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bridge/bridge.hpp b/src/bridge/bridge.hpp
index a190739..8e7d9d7 100644
--- a/src/bridge/bridge.hpp
+++ b/src/bridge/bridge.hpp
@@ -75,7 +75,11 @@ public:
* Try to join an irc_channel, does nothing and return true if the channel
* was already joined.
*/
- bool join_irc_channel(const Iid& iid, std::string nickname, const std::string& password, const std::string& resource, HistoryLimit history_limit);
+ bool join_irc_channel(const Iid& iid, std::string nickname,
+ const std::string& password,
+ const std::string& resource,
+ HistoryLimit history_limit,
+ const bool force_join);
void send_channel_message(const Iid& iid, const std::string& body, std::string id);
void send_private_message(const Iid& iid, const std::string& body, const std::string& type="PRIVMSG");