summaryrefslogtreecommitdiff
path: root/protocols/ace/RMCast/RMCast_UDP_Event_Handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ace/RMCast/RMCast_UDP_Event_Handler.cpp')
-rw-r--r--protocols/ace/RMCast/RMCast_UDP_Event_Handler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/ace/RMCast/RMCast_UDP_Event_Handler.cpp b/protocols/ace/RMCast/RMCast_UDP_Event_Handler.cpp
index 69cfc337113..e5ff8da2761 100644
--- a/protocols/ace/RMCast/RMCast_UDP_Event_Handler.cpp
+++ b/protocols/ace/RMCast/RMCast_UDP_Event_Handler.cpp
@@ -3,7 +3,7 @@
//
#include "RMCast_UDP_Event_Handler.h"
-#include "RMCast_UDP_Receiver.h"
+#include "RMCast_IO_UDP.h"
#if !defined (__ACE_INLINE__)
# include "RMCast_UDP_Event_Handler.i"
@@ -18,19 +18,19 @@ ACE_RMCast_UDP_Event_Handler::~ACE_RMCast_UDP_Event_Handler (void)
ACE_HANDLE
ACE_RMCast_UDP_Event_Handler::get_handle (void) const
{
- return this->receiver_->get_handle ();
+ return this->io_udp_->get_handle ();
}
int
ACE_RMCast_UDP_Event_Handler::handle_input (ACE_HANDLE h)
{
- return this->receiver_->handle_input (h);
+ return this->io_udp_->handle_input (h);
}
int
ACE_RMCast_UDP_Event_Handler::handle_timeout (const ACE_Time_Value &,
const void *)
{
- // @@ return this->receiver_->handle_timeout ();
+ // @@ return this->io_udp_->handle_timeout ();
return 0;
}