|
|
|
|
Definition at line 546 of file Protocol.h. Referenced by ACE_RMCast::Reassemble::recv(). |
|
Definition at line 376 of file Protocol.h. |
|
Definition at line 67 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 367 of file Protocol.h. Referenced by ACE_RMCast::Acknowledge::track(), and ACE_RMCast::Acknowledge::track_queue(). |
|
|
|
Definition at line 751 of file Protocol.h. |
|
Definition at line 1123 of file Protocol.h. |
|
Definition at line 948 of file Protocol.h. |
|
|
Definition at line 1180 of file Protocol.h. |
|
|
Definition at line 680 of file Protocol.h. |
|
Definition at line 66 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 461 of file Protocol.h. |
|
|
|
|
Definition at line 230 of file Protocol.h. References ACE_RMCast::Profile::header_, ACE_RMCast::Profile::serialize_body(), and sstream.
00231 {
00232 ss << p.header_;
00233 p.serialize_body (ss);
00234
00235 return ss;
00236 }
|
|
Definition at line 220 of file Protocol.h. References ACE_RMCast::Profile::header_, ostream, and ACE_RMCast::Profile::serialize_body().
00221 {
00222 os << p.header_;
00223 p.serialize_body (os);
00224
00225 return os;
00226 }
|
|
Definition at line 210 of file Protocol.h. References ACE_RMCast::Profile::Header::id(), ACE_RMCast::Profile::Header::size(), and sstream.
00211 {
00212 ss << hdr.id ();
00213 ss << hdr.size ();
00214
00215 return ss;
00216 }
|
|
Definition at line 200 of file Protocol.h. References ACE_RMCast::Profile::Header::id(), ostream, and ACE_RMCast::Profile::Header::size().
00201 {
00202 os << hdr.id ();
00203 os << hdr.size ();
00204
00205 return os;
00206 }
|
|
Definition at line 40 of file Protocol.h. Referenced by ACE_RMCast::Fragment::send(), ACE_RMCast::Acknowledge::send(), ACE_RMCast::Acknowledge::track(), and ACE_RMCast::Acknowledge::track_queue(). |