summaryrefslogtreecommitdiff
path: root/src/irc/irc_client.cpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-10-12 17:14:29 +0200
committerFlorent Le Coz <louiz@louiz.org>2015-10-12 17:14:29 +0200
commit1aa2c2d857037f3274297527ca3971a75203d39c (patch)
tree9b09bea387764e4e9e20e5545d3091330695dbb9 /src/irc/irc_client.cpp
parent84aafab6040f8fd126e6c4941631d44f122c4b9a (diff)
downloadbiboumi-1aa2c2d857037f3274297527ca3971a75203d39c.tar.gz
biboumi-1aa2c2d857037f3274297527ca3971a75203d39c.tar.bz2
biboumi-1aa2c2d857037f3274297527ca3971a75203d39c.tar.xz
biboumi-1aa2c2d857037f3274297527ca3971a75203d39c.zip
Introduce the realname_from_jid option
When set to true, the realname and username are extracted (by default) from the user’s JID fix #3136
Diffstat (limited to 'src/irc/irc_client.cpp')
-rw-r--r--src/irc/irc_client.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index d6c7021..0289d72 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -24,12 +24,14 @@ using namespace std::string_literals;
using namespace std::chrono_literals;
-IrcClient::IrcClient(std::shared_ptr<Poller> poller, const std::string& hostname, const std::string& username, Bridge* bridge):
+IrcClient::IrcClient(std::shared_ptr<Poller> poller, const std::string& hostname,
+ const std::string& nickname, const std::string& username,
+ const std::string& realname, Bridge* bridge):
TCPSocketHandler(poller),
hostname(hostname),
username(username),
- realname(username),
- current_nick(username),
+ realname(realname),
+ current_nick(nickname),
bridge(bridge),
welcomed(false),
chanmodes({"", "", "", ""}),