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 | bfa1e90ba0c3711a2a74edfae03b3aa9bdd4ec36 (patch) | |
tree | 2a3da2a69b30260cb8cbb027c38afe60a7262240 /ace/SOCK.h | |
parent | 915bcc45e3d686524f7bd3f806fdc79ae3c2ae18 (diff) | |
download | ATCD-bfa1e90ba0c3711a2a74edfae03b3aa9bdd4ec36.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_; |