diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-25 20:25:38 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-25 20:25:38 +0000 |
commit | 99c89f1a5f60769482ce90f1260b777f79a982f4 (patch) | |
tree | fa4555d4d27546bbffa0220ff4ce5e94719998fc /ace/SOCK.h | |
parent | 4183ed3f5961a1270254ab84cd04a01f3be39326 (diff) | |
download | ATCD-99c89f1a5f60769482ce90f1260b777f79a982f4.tar.gz |
removed dummy_ static now that the Object_Manager initializes WinSock
Diffstat (limited to 'ace/SOCK.h')
-rw-r--r-- | ace/SOCK.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/ace/SOCK.h b/ace/SOCK.h index 64ecc5b5225..2c890201aa3 100644 --- a/ace/SOCK.h +++ b/ace/SOCK.h @@ -72,17 +72,12 @@ protected: int open (int type, int protocol_family, int protocol, - int reuse_addr); + int reuse_addr); // Wrapper around the <socket> system call. ACE_SOCK (int type, int protocol_family, - int protocol = 0, int reuse_addr = 0); + int protocol = 0, int reuse_addr = 0); // Constructor with arguments to call the <socket> system call. - -#if defined (ACE_WIN32) - static ACE_SOCK dummy_; - // Used to ensure we initialize WinSock! -#endif /* ACE_WIN32 */ }; #include "ace/SOCK.i" |