diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-11-27 03:01:40 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-11-27 03:01:40 +0000 |
commit | 51031c0c35fdd63094cda527f71eff4833bcdafa (patch) | |
tree | 9b5f550f12e96d154fe08d790e6b7f56ef71fd58 /ace/Pipe.cpp | |
parent | f97bb9de2ac0bef53045507a69d82352ace4198e (diff) | |
download | ATCD-51031c0c35fdd63094cda527f71eff4833bcdafa.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Pipe.cpp')
-rw-r--r-- | ace/Pipe.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ace/Pipe.cpp b/ace/Pipe.cpp index 89058740368..027ba172c92 100644 --- a/ace/Pipe.cpp +++ b/ace/Pipe.cpp @@ -30,9 +30,8 @@ ACE_Pipe::open (void) ACE_SOCK_Stream writer; int result = 0; - // Bind listener to any port, make sure to enable the "reuse addr" - // flag. - if (acceptor.open (ACE_Addr::sap_any, 1) == -1) + // Bind listener to any port + if (acceptor.open (ACE_Addr::sap_any) == -1) result = -1; else if (acceptor.get_local_addr (my_addr) == -1) result = -1; |