fixed sending whispers from /whispers

This commit is contained in:
fourtf
2018-06-05 18:51:14 +02:00
parent b410db844d
commit 51bde1098e
7 changed files with 39 additions and 62 deletions
+5
View File
@@ -44,6 +44,11 @@ IrcConnection *AbstractIrcServer::getReadConnection() const
return this->readConnection.get();
}
IrcConnection *AbstractIrcServer::getWriteConnection() const
{
return this->writeConnection.get();
}
void AbstractIrcServer::connect()
{
this->disconnect();
+1
View File
@@ -20,6 +20,7 @@ public:
// connection
IrcConnection *getReadConnection() const;
IrcConnection *getWriteConnection() const;
void connect();
void disconnect();