diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-09 15:34:53 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-09 15:34:53 +0000 |
commit | b089b751d8ea2dd5a4891c78791d6aeb5d8f701d (patch) | |
tree | 40b47382b0de723c3104163be19159781ce8b366 /ace/SOCK.h | |
parent | be0cbff8ac724db0d8c428b21413eef957cbd3c7 (diff) | |
download | ATCD-b089b751d8ea2dd5a4891c78791d6aeb5d8f701d.tar.gz |
ChangeLogTag:Thu Oct 9 10:30:43 1997 Carlos O'Ryan <coryan@macarena.cs.wustl.edu>
Diffstat (limited to 'ace/SOCK.h')
-rw-r--r-- | ace/SOCK.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ace/SOCK.h b/ace/SOCK.h index 2c890201aa3..b08446f2b84 100644 --- a/ace/SOCK.h +++ b/ace/SOCK.h @@ -57,6 +57,12 @@ public: // Return the address of the remotely connected peer (if there is // one), in the referenced ACE_Addr. Returns 0 if successful, else -1. + int open (int type, + int protocol_family, + int protocol, + int reuse_addr); + // Wrapper around the <socket> system call. + void dump (void) const; // Dump the state of an object. @@ -69,12 +75,6 @@ protected: // Default constructor. It's protected to make sure no instance is // instantiated. - int open (int type, - int protocol_family, - int protocol, - int reuse_addr); - // Wrapper around the <socket> system call. - ACE_SOCK (int type, int protocol_family, int protocol = 0, int reuse_addr = 0); // Constructor with arguments to call the <socket> system call. |