summaryrefslogtreecommitdiff
path: root/src/irc/irc_client.hpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-10-12 16:35:50 +0200
committerFlorent Le Coz <louiz@louiz.org>2015-10-12 16:35:50 +0200
commit6512f830fa2baa85a7c688843ebd42eb528e2ad6 (patch)
tree8f1278ab28f17215ba9cbf99855c155751d2bf60 /src/irc/irc_client.hpp
parent60d340be19aa4370620181b56a6d4ccdcfa014dc (diff)
downloadbiboumi-6512f830fa2baa85a7c688843ebd42eb528e2ad6.tar.gz
biboumi-6512f830fa2baa85a7c688843ebd42eb528e2ad6.tar.bz2
biboumi-6512f830fa2baa85a7c688843ebd42eb528e2ad6.tar.xz
biboumi-6512f830fa2baa85a7c688843ebd42eb528e2ad6.zip
The realname is also saved as an IrcClient member
Diffstat (limited to 'src/irc/irc_client.hpp')
-rw-r--r--src/irc/irc_client.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp
index 4e61d14..a6b51ce 100644
--- a/src/irc/irc_client.hpp
+++ b/src/irc/irc_client.hpp
@@ -254,9 +254,13 @@ private:
*/
const std::string hostname;
/**
- * The user name used in the USER irc command
+ * The username used in the USER irc command
*/
- const std::string username;
+ std::string username;
+ /**
+ * The realname used in the USER irc command
+ */
+ std::string realname;
/**
* Our current nickname on the server
*/