diff options
Diffstat (limited to 'source/Server.h')
-rw-r--r-- | source/Server.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Server.h b/source/Server.h index b3599aa1e..8d21e7834 100644 --- a/source/Server.h +++ b/source/Server.h @@ -62,11 +62,11 @@ public: //tolua_export void NotifyClientWrite(const cClientHandle * a_Client); // Notifies m_SocketThreads that client has something to be written - void WriteToClient(const cSocket * a_Socket, const AString & a_Data); // Queues outgoing data for the socket through m_SocketThreads + void WriteToClient(const cClientHandle * a_Client, const AString & a_Data); // Queues outgoing data for the client through m_SocketThreads - void QueueClientClose(const cSocket * a_Socket); // Queues the socket to close when all its outgoing data is sent + void QueueClientClose(const cClientHandle * a_Client); // Queues the clienthandle to close when all its outgoing data is sent - void RemoveClient(const cSocket * a_Socket); // Removes the socket from m_SocketThreads + void RemoveClient(const cClientHandle * a_Client); // Removes the clienthandle from m_SocketThreads CryptoPP::RSA::PrivateKey & GetPrivateKey(void) { return m_PrivateKey; } CryptoPP::RSA::PublicKey & GetPublicKey (void) { return m_PublicKey; } |