summaryrefslogtreecommitdiff
path: root/syncSocket.h
diff options
context:
space:
mode:
Diffstat (limited to 'syncSocket.h')
-rw-r--r--syncSocket.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/syncSocket.h b/syncSocket.h
index 77b8824..52ee6df 100644
--- a/syncSocket.h
+++ b/syncSocket.h
@@ -3,6 +3,7 @@
#include "Sockets/TcpSocket.h"
#include "Sockets/ISocketHandler.h"
+#include "connectionList.h"
#ifdef SOCKETS_NAMESPACE
using namespace SOCKETS_NAMESPACE;
@@ -11,7 +12,7 @@ using namespace SOCKETS_NAMESPACE;
class SyncSocket : public TcpSocket
{
public:
- SyncSocket(ISocketHandler& );
+ SyncSocket(ISocketHandler&,ConnectionList & );
void OnAccept();
@@ -20,7 +21,8 @@ public:
// void Init();
// void InitSSLServer();
-//private:
+private:
+ ConnectionList & cl_;
// ResumeSocket2& operator=(const ResumeSocket2& ) { return *this; } // assignment operator
};