diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-25 16:54:34 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-25 16:54:34 +0000 |
commit | c296ef37e9ace09639774213adb9f3022ec44468 (patch) | |
tree | f459881bb1615d0e047bd668584598a954a9e1e8 /ace | |
parent | 9b8862d3e5d6b528b21d7f9baba0294a16afbc17 (diff) | |
download | ATCD-c296ef37e9ace09639774213adb9f3022ec44468.tar.gz |
ChangeLogTag:Wed Oct 25 09:50:48 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'ace')
-rw-r--r-- | ace/RMCast/RMCast_IO_UDP.cpp | 2 | ||||
-rw-r--r-- | ace/RMCast/RMCast_IO_UDP.h | 2 | ||||
-rw-r--r-- | ace/RMCast/RMCast_UDP_Reliable_Receiver.cpp | 1 | ||||
-rw-r--r-- | ace/RMCast/RMCast_UDP_Reliable_Receiver.h | 2 | ||||
-rw-r--r-- | ace/RMCast/RMCast_UDP_Reliable_Receiver.i | 2 | ||||
-rw-r--r-- | ace/RMCast/RMCast_UDP_Reliable_Sender.h | 2 | ||||
-rw-r--r-- | ace/RMCast/RMCast_UDP_Reliable_Sender.i | 4 |
7 files changed, 8 insertions, 7 deletions
diff --git a/ace/RMCast/RMCast_IO_UDP.cpp b/ace/RMCast/RMCast_IO_UDP.cpp index ca8af1bfb39..c5f42eea535 100644 --- a/ace/RMCast/RMCast_IO_UDP.cpp +++ b/ace/RMCast/RMCast_IO_UDP.cpp @@ -20,7 +20,7 @@ ACE_RMCast_IO_UDP::~ACE_RMCast_IO_UDP (void) } int -ACE_RMCast_IO_UDP::open (const ACE_INET_Addr &mcast_group, +ACE_RMCast_IO_UDP::init (const ACE_INET_Addr &mcast_group, const ACE_Addr &local, int protocol_family, int protocol, diff --git a/ace/RMCast/RMCast_IO_UDP.h b/ace/RMCast/RMCast_IO_UDP.h index e68b360576d..1a692a36517 100644 --- a/ace/RMCast/RMCast_IO_UDP.h +++ b/ace/RMCast/RMCast_IO_UDP.h @@ -52,7 +52,7 @@ public: * alternative would be to implement almost identical class for * outgoing and incoming UDP I/O */ - int open (const ACE_INET_Addr &mcast_group, + int init (const ACE_INET_Addr &mcast_group, const ACE_Addr &local, int protocol_family = PF_INET, int protocol = 0, diff --git a/ace/RMCast/RMCast_UDP_Reliable_Receiver.cpp b/ace/RMCast/RMCast_UDP_Reliable_Receiver.cpp index 8a99b4cee6b..9057281cc52 100644 --- a/ace/RMCast/RMCast_UDP_Reliable_Receiver.cpp +++ b/ace/RMCast/RMCast_UDP_Reliable_Receiver.cpp @@ -2,6 +2,7 @@ #include "RMCast_UDP_Reliable_Receiver.h" #include "RMCast_UDP_Event_Handler.h" +#include "ace/Reactor.h" #if !defined (__ACE_INLINE__) # include "RMCast_UDP_Reliable_Receiver.i" diff --git a/ace/RMCast/RMCast_UDP_Reliable_Receiver.h b/ace/RMCast/RMCast_UDP_Reliable_Receiver.h index 2a580afbed8..902da503737 100644 --- a/ace/RMCast/RMCast_UDP_Reliable_Receiver.h +++ b/ace/RMCast/RMCast_UDP_Reliable_Receiver.h @@ -25,7 +25,7 @@ public: virtual ~ACE_RMCast_UDP_Reliable_Receiver (void); /// Open the UDP I/O module. - int open (const ACE_INET_Addr &mcast_group); + int init (const ACE_INET_Addr &mcast_group); /// Use the reactor to handle incoming messages void reactive_incoming_messages (ACE_Reactor *reactor); diff --git a/ace/RMCast/RMCast_UDP_Reliable_Receiver.i b/ace/RMCast/RMCast_UDP_Reliable_Receiver.i index 29a212adfeb..01b2ebe2cad 100644 --- a/ace/RMCast/RMCast_UDP_Reliable_Receiver.i +++ b/ace/RMCast/RMCast_UDP_Reliable_Receiver.i @@ -1,7 +1,7 @@ // $Id$ ACE_INLINE int -ACE_RMCast_UDP_Reliable_Receiver::open (const ACE_INET_Addr &mcast_group) +ACE_RMCast_UDP_Reliable_Receiver::init (const ACE_INET_Addr &mcast_group) { return this->io_udp_.subscribe (mcast_group); } diff --git a/ace/RMCast/RMCast_UDP_Reliable_Sender.h b/ace/RMCast/RMCast_UDP_Reliable_Sender.h index d84a070ef08..488859a8e2f 100644 --- a/ace/RMCast/RMCast_UDP_Reliable_Sender.h +++ b/ace/RMCast/RMCast_UDP_Reliable_Sender.h @@ -29,7 +29,7 @@ public: virtual ~ACE_RMCast_UDP_Reliable_Sender (void); /// Open the UDP I/O module. - int open (const ACE_INET_Addr &mcast_group); + int init (const ACE_INET_Addr &mcast_group); /// Use the reactor to handle incoming messages void reactive_incoming_messages (ACE_Reactor *reactor); diff --git a/ace/RMCast/RMCast_UDP_Reliable_Sender.i b/ace/RMCast/RMCast_UDP_Reliable_Sender.i index fc5f29a818d..93868a86ede 100644 --- a/ace/RMCast/RMCast_UDP_Reliable_Sender.i +++ b/ace/RMCast/RMCast_UDP_Reliable_Sender.i @@ -1,9 +1,9 @@ // $Id$ ACE_INLINE int -ACE_RMCast_UDP_Reliable_Sender::open (const ACE_INET_Addr &mcast_group) +ACE_RMCast_UDP_Reliable_Sender::init (const ACE_INET_Addr &mcast_group) { - return this->io_udp_.open (mcast_group, ACE_Addr::sap_any); + return this->io_udp_.init (mcast_group, ACE_Addr::sap_any); } ACE_INLINE int |