summaryrefslogtreecommitdiff
path: root/syncSocket.h
blob: 52ee6df06362a52e00ef784b859ff17e0d54bbbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef _SYNCSOCKET_H
#define _SYNCSOCKET_H

#include "Sockets/TcpSocket.h"
#include "Sockets/ISocketHandler.h"
#include "connectionList.h"

#ifdef SOCKETS_NAMESPACE
using namespace SOCKETS_NAMESPACE;
#endif // SOCKETS_NAMESPACE

class SyncSocket : public TcpSocket
{
public:
	SyncSocket(ISocketHandler&,ConnectionList & );

	void OnAccept();

	bool OnConnectRetry();
	void OnReconnect();
//	void Init();

//	void InitSSLServer();
private:
	ConnectionList & cl_;
//	ResumeSocket2& operator=(const ResumeSocket2& ) { return *this; } // assignment operator
};


#endif // _SYNCSOCKET_H