diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-09 21:55:56 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-09 21:55:56 +0000 |
commit | b0ddce8df84ed3018eae5dfa95e9066c51502a46 (patch) | |
tree | 176b8bc84ff4245d1251c34cbed6e4c5a98b2573 /ace/UNIX_Addr.h | |
parent | 764c56388da3507fdd54e5c4f8fc67ff9d8621b5 (diff) | |
download | ATCD-b0ddce8df84ed3018eae5dfa95e9066c51502a46.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/UNIX_Addr.h')
-rw-r--r-- | ace/UNIX_Addr.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ace/UNIX_Addr.h b/ace/UNIX_Addr.h index 65340c72472..0e2e35d0baa 100644 --- a/ace/UNIX_Addr.h +++ b/ace/UNIX_Addr.h @@ -1,7 +1,6 @@ /* -*- C++ -*- */ // $Id$ - // ============================================================================ // // = LIBRARY @@ -39,13 +38,13 @@ public: ACE_UNIX_Addr (const sockaddr_un *, int len); // Creates an ACE_INET_Addr from a sockaddr_un structure. - void set (const ACE_UNIX_Addr &sa); + int set (const ACE_UNIX_Addr &sa); // Creates an ACE_UNIX_Addr from another <ACE_UNIX_Addr>. - void set (const char rendezvous_point[]); + int set (const char rendezvous_point[]); // Creates an ACE_UNIX_Addr from a string. - void set (const sockaddr_un *, int len); + int set (const sockaddr_un *, int len); // Creates an ACE_INET_Addr from a sockaddr_un structure. virtual void *get_addr (void) const; |