#include <Protocol.h>
Inheritance diagram for ACE_RMCast::From:
Public Member Functions | |
From (Header const &h, istream &is) | |
From (Address const &addr) | |
From_ptr | clone () |
Address const & | address () const |
virtual void | serialize_body (ostream &os) const |
virtual void | serialize_body (sstream &ss) const |
Static Public Attributes | |
u16 const | id = 0x0001 |
Protected Member Functions | |
virtual Profile_ptr | clone_ () |
From (From const &from) | |
Private Attributes | |
Address | address_ |
|
Definition at line 380 of file Protocol.h. References ACE_RMCast::istream, ACE_RMCast::u16, and ACE_RMCast::u32.
|
|
Definition at line 392 of file Protocol.h.
|
|
Definition at line 411 of file Protocol.h.
00415 : Profile (from), |
|
Definition at line 419 of file Protocol.h. References ACE_RMCast::Address.
|
|
Reimplemented from ACE_RMCast::Profile. Definition at line 399 of file Protocol.h.
00403 { |
|
Implements ACE_RMCast::Profile. Definition at line 406 of file Protocol.h. References ACE_RMCast::Profile_ptr.
00407 : 00408 virtual Profile_ptr 00409 clone_ () { |
|
Implements ACE_RMCast::Profile. Definition at line 436 of file Protocol.h.
|
|
Implements ACE_RMCast::Profile. Definition at line 426 of file Protocol.h. References ACE_INET_Addr::get_ip_address(), ACE_INET_Addr::get_port_number(), ACE_RMCast::ostream, ACE_RMCast::u16, and ACE_RMCast::u32.
00427 : 00428 virtual void 00429 serialize_body (ostream& os) const 00430 { 00431 u32 addr (address_.get_ip_address ()); 00432 u16 port (address_.get_port_number ()); 00433 os << addr; |
|
Definition at line 446 of file Protocol.h. |
|
Definition at line 9 of file Protocol.cpp. |