diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-02-28 20:13:32 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-02-28 20:13:32 +0000 |
commit | 0440219e8153953677a62bfecc3df271da2c0902 (patch) | |
tree | 2a3da2a69b30260cb8cbb027c38afe60a7262240 /ace/SOCK.h | |
parent | b9ef2bbd6da5db9e1764a3dab62aeb046d84c81b (diff) | |
download | ATCD-0440219e8153953677a62bfecc3df271da2c0902.tar.gz |
foo
Diffstat (limited to 'ace/SOCK.h')
-rw-r--r-- | ace/SOCK.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ace/SOCK.h b/ace/SOCK.h index d2d2ac19647..64ecc5b5225 100644 --- a/ace/SOCK.h +++ b/ace/SOCK.h @@ -71,11 +71,13 @@ protected: int open (int type, int protocol_family, - int protocol); - // Wrapper around the socket() system call. + int protocol, + int reuse_addr); + // Wrapper around the <socket> system call. - ACE_SOCK (int type, int protocol_family, int protocol = 0); - // Constructor with arguments to also call 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. #if defined (ACE_WIN32) static ACE_SOCK dummy_; |