Fixed all errors.
This commit is contained in:
@@ -19,6 +19,8 @@ namespace ehs
|
||||
class Comms : public BaseObj
|
||||
{
|
||||
private:
|
||||
friend class Endpoint;
|
||||
|
||||
static const Version ver;
|
||||
static const UInt_64 internalSys;
|
||||
static const UInt_64 connectOp;
|
||||
|
@@ -17,7 +17,7 @@ namespace ehs
|
||||
class Endpoint : public BaseObj
|
||||
{
|
||||
private:
|
||||
Socket hdl;
|
||||
Comms* owner;
|
||||
EndDisp disposition;
|
||||
Status status;
|
||||
Architecture arch;
|
||||
@@ -40,10 +40,10 @@ namespace ehs
|
||||
public:
|
||||
Endpoint();
|
||||
|
||||
Endpoint(const Socket hdl, const EndDisp disposition, const Architecture arch, const Str_8& id,
|
||||
Endpoint(Comms* owner, const EndDisp disposition, const Architecture arch, const Str_8& id,
|
||||
const AddrType& type, const Str_8& address, const UInt_16 port);
|
||||
|
||||
Endpoint(const Socket hdl, const AddrType& type, const Str_8& address, const UInt_16 port);
|
||||
Endpoint(Comms* owner, const AddrType& type, const Str_8& address, const UInt_16 port);
|
||||
|
||||
Endpoint(const Endpoint& end);
|
||||
|
||||
|
Reference in New Issue
Block a user