blob: 25cc11ada61a5cafe0268c7d76d3ff0072513d3c (
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
|
#ifndef _SYNCSOCKET_H
#define _SYNCSOCKET_H
#include "Sockets/TcpSocket.h"
#include "Sockets/ISocketHandler.h"
#ifdef SOCKETS_NAMESPACE
using namespace SOCKETS_NAMESPACE;
#endif // SOCKETS_NAMESPACE
class SyncSocket : public TcpSocket
{
public:
SyncSocket(ISocketHandler& );
void OnAccept();
bool OnConnectRetry();
void OnReconnect();
//private:
// ResumeSocket2& operator=(const ResumeSocket2& ) { return *this; } // assignment operator
};
#endif // _SYNCSOCKET_H
|