#include <Protocol.h>
Inheritance diagram for ACE_RMCast::To:
Public Member Functions | |
To (Header const &h, istream &is) | |
To (Address const &addr) | |
To_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 = 0x0002 |
Protected Member Functions | |
virtual Profile_ptr | clone_ () |
To (To const &to) | |
Private Attributes | |
Address | address_ |
|
Definition at line 468 of file Protocol.h. References ACE_RMCast::istream, ACE_RMCast::u16, and ACE_RMCast::u32.
|
|
Definition at line 480 of file Protocol.h.
|
|
Definition at line 500 of file Protocol.h.
00504 : Profile (to), |
|
Definition at line 508 of file Protocol.h. References ACE_RMCast::Address.
|
|
Reimplemented from ACE_RMCast::Profile. Definition at line 487 of file Protocol.h.
00491 { |
|
Implements ACE_RMCast::Profile. Definition at line 494 of file Protocol.h. References ACE_RMCast::Profile_ptr.
00495 : 00496 virtual Profile_ptr 00497 clone_ () 00498 { Profile_ptr p (new To (*this)); |
|
Implements ACE_RMCast::Profile. Definition at line 525 of file Protocol.h.
|
|
Implements ACE_RMCast::Profile. Definition at line 515 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.
00516 : 00517 virtual void 00518 serialize_body (ostream& os) const 00519 { 00520 u32 addr (address_.get_ip_address ()); 00521 u16 port (address_.get_port_number ()); 00522 os << addr; |
|
Definition at line 535 of file Protocol.h. |
|
Definition at line 10 of file Protocol.cpp. |