#include <McastReq.h>
Collaboration diagram for vpr::McastReq:

Public Methods | |
| McastReq (void) | |
| Default constructor. More... | |
| McastReq (const InetAddr &mcast_addr, const InetAddr &if_addr) | |
| McastReq (const McastReq &mcast_addr) | |
| Copy constructor. More... | |
| const InetAddr & | getMulticastAddr (void) const |
| const InetAddr & | getInterfaceAddr (void) const |
Definition at line 55 of file McastReq.h.
|
|
Default constructor.
Definition at line 61 of file McastReq.h.
00061 : mMcastAddr(), mIfAddr()
00062 {
00063 /* Do nothing. */ ;
00064 }
|
|
||||||||||||
|
Definition at line 69 of file McastReq.h. References vpr::InetAddr.
00070 : mMcastAddr(mcast_addr), mIfAddr(if_addr)
00071 {
00072 /* Do nothing. */ ;
00073 }
|
|
|
Copy constructor.
Definition at line 78 of file McastReq.h.
00079 {
00080 mMcastAddr = mcast_addr.mMcastAddr;
00081 mIfAddr = mcast_addr.mIfAddr;
00082 }
|
|
|
Definition at line 87 of file McastReq.h. References vpr::InetAddr.
00088 {
00089 return mMcastAddr;
00090 }
|
|
|
Definition at line 95 of file McastReq.h. References vpr::InetAddr.
00096 {
00097 return mIfAddr;
00098 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002