|
|
|
|
Definition at line 541 of file Protocol.h. Referenced by ACE_RMCast::Reassemble::recv(). |
|
Definition at line 373 of file Protocol.h. |
|
Definition at line 66 of file Protocol.h. Referenced by ACE_RMCast::From::From(), ACE_RMCast::Profile::Header::Header(), ACE_RMCast::NRTM::map_(), ACE_RMCast::NoData::NoData(), ACE_RMCast::Part::Part(), ACE_RMCast::Link::recv(), and ACE_RMCast::To::To(). |
|
|
|
Definition at line 364 of file Protocol.h. Referenced by ACE_RMCast::Acknowledge::track(), and ACE_RMCast::Acknowledge::track_queue(). |
|
|
|
Definition at line 744 of file Protocol.h. Referenced by ACE_RMCast::Acknowledge::track_queue(). |
|
Definition at line 1114 of file Protocol.h. |
|
Definition at line 940 of file Protocol.h. Referenced by ACE_RMCast::Acknowledge::create_nrtm(). |
|
|
Definition at line 1170 of file Protocol.h. |
|
|
Definition at line 674 of file Protocol.h. |
|
Definition at line 65 of file Protocol.h. Referenced by ACE_RMCast::Profile::calculate_size(), ACE_RMCast::NRTM::map_(), ACE_RMCast::NRTM::max_count(), operator<<(), and ACE_RMCast::Message::size(). |
|
Definition at line 457 of file Protocol.h. |
|
|
|
|
Definition at line 228 of file Protocol.h. References ACE_RMCast::Profile::header_, ACE_RMCast::Profile::serialize_body(), and sstream.
00229 {
00230 ss << p.header_;
00231 p.serialize_body (ss);
00232
00233 return ss;
00234 }
|
|
Definition at line 218 of file Protocol.h. References ACE_RMCast::Profile::header_, ostream, and ACE_RMCast::Profile::serialize_body().
00219 {
00220 os << p.header_;
00221 p.serialize_body (os);
00222
00223 return os;
00224 }
|
|
Definition at line 208 of file Protocol.h. References ACE_RMCast::Profile::Header::id(), ACE_RMCast::Profile::Header::size(), and sstream.
00209 {
00210 ss << hdr.id ();
00211 ss << hdr.size ();
00212
00213 return ss;
00214 }
|
|
Definition at line 198 of file Protocol.h. References ACE_RMCast::Profile::Header::id(), ostream, and ACE_RMCast::Profile::Header::size().
00199 {
00200 os << hdr.id ();
00201 os << hdr.size ();
00202
00203 return os;
00204 }
|
|
Definition at line 39 of file Protocol.h. Referenced by ACE_RMCast::Fragment::send(), ACE_RMCast::Acknowledge::send(), ACE_RMCast::Acknowledge::track(), and ACE_RMCast::Acknowledge::track_queue(). |