1#ifndef Cpl_Io_Tcp_Win32_AsyncListener_h_
2#define Cpl_Io_Tcp_Win32_AsyncListener_h_
16#include "colony_config.h"
22#ifndef OPTION_CPL_IO_TCP_WIN32_BIND_RETRIES
23#define OPTION_CPL_IO_TCP_WIN32_BIND_RETRIES 5
29#ifndef OPTION_CPL_IO_TCP_WIN32_BIND_RETRY_WAIT
30#define OPTION_CPL_IO_TCP_WIN32_BIND_RETRY_WAIT (10*1000)
58 int portNumToListenOn )
noexcept;
This class defines the callback mechanism used for accepting incoming TCP connections.
Definition AsyncListener.h:48
This abstract class defines the interface for a SIMPLE socket listener.
Definition AsyncListener.h:42
This class implements the Asynchronous Listener.
Definition AsyncListener.h:47
AsyncListener()
Constructor.
void poll() noexcept
This method must be called periodically to service the listen/connection status.
SOCKET m_fd
socket I am listen on
Definition AsyncListener.h:71
unsigned long m_timeMarker
Time marker.
Definition AsyncListener.h:77
Client * m_clientPtr
Client.
Definition AsyncListener.h:74
int m_portNum
Port Number to listen on.
Definition AsyncListener.h:80
void terminate() noexcept
Cpl::Io::Tcp::AsyncListener.
bool startListening(Client &client, int portNumToListenOn) noexcept
Cpl::Io::Tcp::AsyncListener.
bool m_clientConnected
Track if the client is connected.
Definition AsyncListener.h:89
int m_state
Listening state.
Definition AsyncListener.h:83
~AsyncListener()
Destructor.
unsigned m_retryCounter
Retry counter.
Definition AsyncListener.h:86
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20