GM6000 Digital Heater Controller Branch: main
SDX-1330
Connector.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_Posix_Connector_h_
2#define Cpl_Io_Socket_Posix_Connector_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
16
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace Socket {
24///
25namespace Posix {
26
27
28/** This concrete class implements the Cpl::Io::Socket::Connector interface
29 using IPv4/IPv6 addressing for a Posix platform.
30 */
32
33{
34public:
35 /// Constructor
37
38 /// Destructor
40
41
42public:
43 /// See Cpl::Io::Socket::Connector
44 Result_T establish( const char* remoteHostName, int portNumToConnectTo, Cpl::Io::Descriptor& fdOut );
45
46};
47
48
49}; // end namespaces
50};
51};
52};
53#endif // end header latch
This abstract class defines the interface for establishing/requesting a SIMPLE socket connection,...
Definition Connector.h:32
Result_T
Possible return codes when attempting to establish a connection.
Definition Connector.h:35
This concrete class implements the Cpl::Io::Socket::Connector interface using IPv4/IPv6 addressing fo...
Definition Connector.h:33
Result_T establish(const char *remoteHostName, int portNumToConnectTo, Cpl::Io::Descriptor &fdOut)
See Cpl::Io::Socket::Connector.
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