GM6000 Digital Heater Controller Branch: main
SDX-1330
ListenerClientRequest.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_ListenerClientRequest_h_
2#define Cpl_Io_Socket_ListenerClientRequest_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
17#include "Cpl/Itc/SAP.h"
18
19
20///
21namespace Cpl {
22///
23namespace Io {
24///
25namespace Socket {
26
27/** This abstract class define message types and payloads for a set of
28 ITC services. The request() method(s) are to be implemented by the
29 'server'
30 */
31
33{
34public:
35 /// SAP for this API
37
38
39public:
40 /// Payload for Message: newConnection
42 {
43 public:
44 /// Accepted socket descriptor (passed to client)
46
47 /// Raw Information about connection (passed to client)
49
50 /// Client's acceptance flag/status (returned to the listener)
52
53 public:
54 /// Constructor
55 NewConnectionPayload( Cpl::Io::Descriptor newfd, const char* rawConnectionInfo )
56 :m_acceptedFd( newfd ),
57 m_rawConnectionInfo( rawConnectionInfo ),
58 m_accepted( false )
59 {
60 }
61 };
62
63
64 /// Message Type: newConnection
66
67
68
69public:
70 /// Request: NewConnection
71 virtual void request( NewConnectionMsg& msg ) = 0;
72
73
74public:
75 ///
76 virtual ~ListenerClientRequest() {}
77};
78
79
80
81
82
83}; // end namespaces
84};
85};
86#endif // end header latch
Payload for Message: newConnection.
Definition ListenerClientRequest.h:42
const char * m_rawConnectionInfo
Raw Information about connection (passed to client)
Definition ListenerClientRequest.h:48
NewConnectionPayload(Cpl::Io::Descriptor newfd, const char *rawConnectionInfo)
Constructor.
Definition ListenerClientRequest.h:55
Cpl::Io::Descriptor m_acceptedFd
Accepted socket descriptor (passed to client)
Definition ListenerClientRequest.h:45
bool m_accepted
Client's acceptance flag/status (returned to the listener)
Definition ListenerClientRequest.h:51
This abstract class define message types and payloads for a set of ITC services.
Definition ListenerClientRequest.h:33
Cpl::Itc::RequestMessage< ListenerClientRequest, NewConnectionPayload > NewConnectionMsg
Message Type: newConnection.
Definition ListenerClientRequest.h:65
virtual void request(NewConnectionMsg &msg)=0
Request: NewConnection.
Cpl::Itc::SAP< ListenerClientRequest > SAP
SAP for this API.
Definition ListenerClientRequest.h:36
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26