summaryrefslogtreecommitdiff
path: root/src/connection.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-15 13:11:42 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-15 13:11:42 +0000
commitac60f15b03d248318e9378ce2abfb7c9a1663dd4 (patch)
tree0249287d9f3828b4af66c42b0f21d60f6743bfc4 /src/connection.cpp
parentcdd87fec57f147184fda4e73e1f432bbb272eb2a (diff)
/MAP and /LINKS added back (do not use - needs testing)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@609 e03df62e-2008-0410-955e-edbf42e46eb7
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()
{