diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-02 20:08:47 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-02 20:08:47 +0000 |
commit | 02b4c5d878dbcbaaa9bb046cf7f3115cfdc69b25 (patch) | |
tree | c396a89f8114f7c21b65067a9ed2e7f1e3490a88 /ace/DEV_IO.h | |
parent | 3c8b98b4c3305679d882ca22d8bff7c97989d617 (diff) | |
download | ATCD-02b4c5d878dbcbaaa9bb046cf7f3115cfdc69b25.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/DEV_IO.h')
-rw-r--r-- | ace/DEV_IO.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ace/DEV_IO.h b/ace/DEV_IO.h index c561a21ed72..19e19fa374c 100644 --- a/ace/DEV_IO.h +++ b/ace/DEV_IO.h @@ -94,8 +94,24 @@ public: void dump (void) const; // Dump the state of an object. + // = The following two methods are no-ops to keep the + // <ACE_Connector> happy. + int get_local_addr (ACE_DEV_Addr &) const; + // Return the local endpoint address. + + int get_remote_addr (ACE_DEV_Addr &) const; + // Return the address of the remotely connected peer (if there is + // one). + ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. + + // = Meta-type info + typedef ACE_DEV_Addr PEER_ADDR; + +private: + ACE_DEV_Addr addr_; + // Address of device we are connected to. }; #include "ace/DEV_IO.i" |