summaryrefslogtreecommitdiff
path: root/src/connection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection.cpp')
-rw-r--r--src/connection.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/connection.cpp b/src/connection.cpp
index 0409f4f47..413c1cf5d 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -267,11 +267,21 @@ std::string ircd_connector::GetServerName()
return this->servername;
}
+std::string ircd_connector::GetDescription()
+{
+ return this->description;
+}
+
void ircd_connector::SetServerName(std::string serv)
{
this->servername = serv;
}
+void ircd_connector::SetDescription(std::string desc)
+{
+ this->servername = desc;
+}
+
int ircd_connector::GetDescriptor()
{