GM6000 Digital Heater Controller Branch: main
SDX-1330
Listener.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_Listener_Win32_h_
2#define Cpl_Io_Socket_Listener_Win32_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include <winsock2.h>
17#include "colony_config.h"
19
20
21///
22namespace Cpl {
23///
24namespace Io {
25///
26namespace Socket {
27///
28namespace Win32 {
29
30
31/** This value is number of retries that is performed when attempting
32 to bind to the listening port.
33 */
34#ifndef OPTION_CPL_IO_SOCKET_WIN32_BIND_RETRIES
35#define OPTION_CPL_IO_SOCKET_WIN32_BIND_RETRIES 5
36#endif
37
38 /** This value is time, in milliseconds between retries during the binding
39 process.
40 */
41#ifndef OPTION_CPL_IO_SOCKET_WIN32_BIND_RETRY_WAIT
42#define OPTION_CPL_IO_SOCKET_WIN32_BIND_RETRY_WAIT (10*1000)
43#endif
44
45
46
47 /** This concrete class implements the Cpl::Io::Socket::Listener interface
48 using IPv4 addressing for the Win32 (aka winsock2) platform.
49 */
51{
52protected:
53 /// socket I am listen on
54 SOCKET m_fd;
55
56public:
57 /// Constructor
59
60 /// Destructor
62
63
64protected:
65 /// See Cpl::Io::Socket::Listener_
66 virtual void listen();
67
68 /// See Cpl::Io::Socket::Listener_
69 virtual void stopListener();
70};
71
72
73
74}; // end namespaces
75};
76};
77};
78#endif // end header latch
This private, mostly concrete helper class manages the top level threading aspects for a simple liste...
Definition Listener_.h:32
This concrete class implements the Cpl::Io::Socket::Listener interface using IPv4 addressing for the ...
Definition Listener.h:51
virtual void stopListener()
See Cpl::Io::Socket::Listener_.
SOCKET m_fd
socket I am listen on
Definition Listener.h:54
virtual void listen()
See Cpl::Io::Socket::Listener_.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20