blob: 31169c16e261a0f58ad2ea68938806acb2f2ecd3 (
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
31
|
#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 OnRawData(const char *buf,size_t len);
// void Init();
// void InitSSLServer();
private:
ConnectionList & cl_;
// ResumeSocket2& operator=(const ResumeSocket2& ) { return *this; } // assignment operator
};
#endif // _SYNCSOCKET_H
|