summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorboris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-02-25 10:41:56 +0000
committerboris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-02-25 10:41:56 +0000
commitab67b60f90ddc35a0b5d148be27e6a328917f64a (patch)
treea8a41fdcd30bc5342cfae3784e4a0c44e6e9f0a1 /protocols
parentf29782b4562e4898c78b7abd91201377a4420786 (diff)
downloadATCD-ab67b60f90ddc35a0b5d148be27e6a328917f64a.tar.gz
ChangeLogTag: Fri Feb 25 12:55:37 2005 Boris Kolpackov <boris@kolpackov.net>
Diffstat (limited to 'protocols')
-rw-r--r--protocols/ace/RMCast/Link.cpp6
-rw-r--r--protocols/ace/RMCast/Link.h4
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_;