GM6000 Digital Heater Controller Branch: main
SDX-1330
Listener.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_Listener_Posix_h_
2#define Cpl_Io_Socket_Listener_Posix_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 "colony_config.h"
18
19
20///
21namespace Cpl {
22///
23namespace Io {
24///
25namespace Socket {
26///
27namespace Posix {
28
29
30/** This value is number of retries that is performed when attempting
31 to bind to the listening port.
32 */
33#ifndef USE_CPL_IO_SOCKET_POSIX_BIND_RETRIES
34#define USE_CPL_IO_SOCKET_POSIX_BIND_RETRIES 5
35#endif
36
37 /** This value is time, in milliseconds between retries during the binding
38 process.
39 */
40#ifndef USE_CPL_IO_SOCKET_POSIX_BIND_RETRY_WAIT
41#define USE_CPL_IO_SOCKET_POSIX_BIND_RETRY_WAIT (10*1000)
42#endif
43
44
45
46 /** This concrete class implements the Cpl::Io::Socket::Listener interface
47 using IPv4 addressing for the Posix compliant platform.
48 */
50{
51protected:
52 /// socket I am listen on
53 int m_fd;
54
55public:
56 /// Constructor
58
59 /// Destructor
61
62
63protected:
64 /// See Cpl::Io::Socket::Listener_
65 virtual void listen();
66
67 /// See Cpl::Io::Socket::Listener_
68 virtual void stopListener();
69};
70
71
72
73}; // end namespaces
74};
75};
76};
77#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:50
virtual void listen()
See Cpl::Io::Socket::Listener_.
int m_fd
socket I am listen on
Definition Listener.h:53
virtual void stopListener()
See Cpl::Io::Socket::Listener_.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20