#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 383 of file Protocol.h. References ACE_RMCast::istream, ACE_RMCast::u16, and ACE_RMCast::u32.
|
|
Definition at line 395 of file Protocol.h. References address_.
|
|
Definition at line 415 of file Protocol.h.
00419 : Profile (from), |
|
Definition at line 423 of file Protocol.h. References ACE_RMCast::Address, and address_.
|
|
Reimplemented from ACE_RMCast::Profile. Definition at line 402 of file Protocol.h.
00406 { |
|
Implements ACE_RMCast::Profile. Definition at line 409 of file Protocol.h. References ACE_RMCast::Profile_ptr.
00410 : 00411 virtual Profile_ptr 00412 clone_ () 00413 { Profile_ptr p (new From (*this)); |
|
Implements ACE_RMCast::Profile. Definition at line 440 of file Protocol.h.
|
|
Implements ACE_RMCast::Profile. Definition at line 430 of file Protocol.h. References address_, ACE_INET_Addr::get_ip_address(), ACE_INET_Addr::get_port_number(), ACE_RMCast::ostream, ACE_RMCast::u16, and ACE_RMCast::u32.
00431 : 00432 virtual void 00433 serialize_body (ostream& os) const 00434 { 00435 u32 addr (address_.get_ip_address ()); 00436 u16 port (address_.get_port_number ()); 00437 os << addr; |
|
Definition at line 450 of file Protocol.h. Referenced by address(), From(), and serialize_body(). |
|
Definition at line 9 of file Protocol.cpp. |