diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/ace/RMCast/Link.cpp | 6 | ||||
-rw-r--r-- | protocols/ace/RMCast/Link.h | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/protocols/ace/RMCast/Link.cpp b/protocols/ace/RMCast/Link.cpp index d7c2639b5ce..7b68367f4f0 100644 --- a/protocols/ace/RMCast/Link.cpp +++ b/protocols/ace/RMCast/Link.cpp @@ -263,4 +263,10 @@ namespace ACE_RMCast reinterpret_cast<Link*> (obj)->recv (); return 0; } + + void Link:: + recv (Message_ptr) + { + abort (); + } } diff --git a/protocols/ace/RMCast/Link.h b/protocols/ace/RMCast/Link.h index e7b2250aba5..4c1495d2a37 100644 --- a/protocols/ace/RMCast/Link.h +++ b/protocols/ace/RMCast/Link.h @@ -45,6 +45,10 @@ namespace ACE_RMCast recv_thunk (void* obj); private: + virtual void + recv (Message_ptr); + + private: Address addr_, self_; ACE_SOCK_Dgram_Mcast rsock_; ACE_SOCK_Dgram ssock_; |