summaryrefslogtreecommitdiff
path: root/ace/SOCK.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-28 20:13:32 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-28 20:13:32 +0000
commit0440219e8153953677a62bfecc3df271da2c0902 (patch)
tree2a3da2a69b30260cb8cbb027c38afe60a7262240 /ace/SOCK.h
parentb9ef2bbd6da5db9e1764a3dab62aeb046d84c81b (diff)
downloadATCD-0440219e8153953677a62bfecc3df271da2c0902.tar.gz
foo
Diffstat (limited to 'ace/SOCK.h')
-rw-r--r--ace/SOCK.h10
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_;