GM6000 Digital Heater Controller Branch: main
SDX-1330
Connector.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_Connector_h_
2#define Cpl_Io_Socket_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
15#include "Cpl/Io/Descriptor.h"
16
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace Socket {
24
25
26/** This abstract class defines the interface for establishing/requesting
27 a SIMPLE socket connection, i.e. make a "client connection". A single
28 instance can be used to create many connections.
29 */
31
32{
33public:
34 /// Possible return codes when attempting to establish a connection
35 enum Result_T {
36 eSUCCESS=0, /// Connection was successful
37 eERROR, /// Error occurred
38 eREFUSED, /// Connection request was refused by the remote Host
39 };
40
41
42public:
43 /** Requests a client connection to the specified remote Host. Upon
44 success an opened Cpl::Io::Descriptor is returned (via 'fdOut') for the
45 connection.
46 */
47 virtual Result_T establish( const char* remoteHostName, int portNumToConnectTo, Cpl::Io::Descriptor& fdOut ) = 0;
48
49
50public:
51 /// Virtual destructor
52 virtual ~Connector() {}
53};
54
55
56}; // end namespaces
57};
58};
59#endif // end header latch
This abstract class defines the interface for establishing/requesting a SIMPLE socket connection,...
Definition Connector.h:32
virtual ~Connector()
Virtual destructor.
Definition Connector.h:52
Result_T
Possible return codes when attempting to establish a connection.
Definition Connector.h:35
@ eERROR
Connection was successful.
Definition Connector.h:37
@ eREFUSED
Error occurred.
Definition Connector.h:38
virtual Result_T establish(const char *remoteHostName, int portNumToConnectTo, Cpl::Io::Descriptor &fdOut)=0
Requests a client connection to the specified remote Host.
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