#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 464 of file Protocol.h. References ACE_RMCast::istream, ACE_RMCast::u16, and ACE_RMCast::u32.
|
|
Definition at line 476 of file Protocol.h.
|
|
Definition at line 495 of file Protocol.h.
00499 : Profile (to), |
|
Definition at line 503 of file Protocol.h. References ACE_RMCast::Address.
|
|
Reimplemented from ACE_RMCast::Profile. Definition at line 483 of file Protocol.h.
00487 { |
|
Implements ACE_RMCast::Profile. Definition at line 490 of file Protocol.h. References ACE_RMCast::Profile_ptr.
00491 : 00492 virtual Profile_ptr 00493 clone_ () { |
|
Implements ACE_RMCast::Profile. Definition at line 520 of file Protocol.h.
|
|
Implements ACE_RMCast::Profile. Definition at line 510 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.
00511 : 00512 virtual void 00513 serialize_body (ostream& os) const 00514 { 00515 u32 addr (address_.get_ip_address ()); 00516 u16 port (address_.get_port_number ()); 00517 os << addr; |
|
Definition at line 530 of file Protocol.h. |
|
Definition at line 10 of file Protocol.cpp. |