![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the interface for establishing/requesting a SIMPLE socket connection, i.e. More...
This abstract class defines the interface for establishing/requesting a SIMPLE socket connection, i.e.
make a "client connection". A single instance can be used to create many connections.
#include <Connector.h>
Public Types | |
enum | Result_T { eSUCCESS =0 , eERROR , eREFUSED } |
Possible return codes when attempting to establish a connection. More... | |
Public Member Functions | |
virtual Result_T | establish (const char *remoteHostName, int portNumToConnectTo, Cpl::Io::Descriptor &fdOut)=0 |
Requests a client connection to the specified remote Host. | |
virtual | ~Connector () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
Reimplemented in Cpl::Io::Socket::Posix::Connector, and Cpl::Io::Socket::Win32::Connector.
|
pure virtual |
Requests a client connection to the specified remote Host.
Upon success an opened Cpl::Io::Descriptor is returned (via 'fdOut') for the connection.
Implemented in Cpl::Io::Socket::Posix::Connector, and Cpl::Io::Socket::Win32::Connector.