diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-01 12:39:00 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-01 12:39:00 +0000 |
commit | caa0581d42e1adfc5006d5c9e367470eb72f5e2c (patch) | |
tree | c7455f3e478cea6d54cae1a9b7828ab92ddbe1c5 /ace/SOCK_Dgram_Mcast.cpp | |
parent | e65ef5abe9dc2210ec66618be058977d3716991e (diff) | |
download | ATCD-caa0581d42e1adfc5006d5c9e367470eb72f5e2c.tar.gz |
added fourth arg in call to ACE_SOCK::open ()
Diffstat (limited to 'ace/SOCK_Dgram_Mcast.cpp')
-rw-r--r-- | ace/SOCK_Dgram_Mcast.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/SOCK_Dgram_Mcast.cpp b/ace/SOCK_Dgram_Mcast.cpp index ed4c52f9e2e..08967825525 100644 --- a/ace/SOCK_Dgram_Mcast.cpp +++ b/ace/SOCK_Dgram_Mcast.cpp @@ -33,7 +33,8 @@ ACE_SOCK_Dgram_Mcast::subscribe (const ACE_INET_Addr &mcast_addr, // make a local copy of address to use in sends this->mcast_addr_.set (mcast_addr); - if (this->ACE_SOCK::open (SOCK_DGRAM, protocol_family, protocol) == -1) + if (ACE_SOCK::open (SOCK_DGRAM, protocol_family, + protocol, reuse_addr) == -1) return -1; // Create multicast request. |