IPv4 route cache entry (similar to Linux struct rtable) More...
#include "ipv4-route.h"
Public Member Functions | |
Ipv4Route () | |
Ipv4Address | GetDestination () const |
Ipv4Address | GetGateway () const |
Ptr< NetDevice > | GetOutputDevice () const |
Ipv4Address | GetSource () const |
void | SetDestination (Ipv4Address dest) |
void | SetGateway (Ipv4Address gw) |
void | SetOutputDevice (Ptr< NetDevice > outputDevice) |
Equivalent in Linux to dst_entry.dev. | |
void | SetSource (Ipv4Address src) |
Public Member Functions inherited from ns3::SimpleRefCount< Ipv4Route > | |
SimpleRefCount () | |
Default constructor. | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. | |
void | Ref () const |
Increment the reference count. | |
void | Unref () const |
Decrement the reference count. | |
Private Attributes | |
Ipv4Address | m_dest |
Destination address. | |
Ipv4Address | m_gateway |
Gateway address. | |
Ptr< NetDevice > | m_outputDevice |
Output device. | |
Ipv4Address | m_source |
Source address. | |
IPv4 route cache entry (similar to Linux struct rtable)
This is a reference counted object. In the future, we will add other entries from struct dst_entry, struct rtable, and struct dst_ops as needed.
Definition at line 30 of file ipv4-route.h.
ns3::Ipv4Route::Ipv4Route | ( | ) |
Definition at line 19 of file ipv4-route.cc.
References NS_LOG_FUNCTION.
Ipv4Address ns3::Ipv4Route::GetDestination | ( | ) | const |
Definition at line 32 of file ipv4-route.cc.
References m_dest, and NS_LOG_FUNCTION.
Referenced by ns3::operator<<().
Ipv4Address ns3::Ipv4Route::GetGateway | ( | ) | const |
Definition at line 60 of file ipv4-route.cc.
References m_gateway, and NS_LOG_FUNCTION.
Referenced by ns3::operator<<().
Definition at line 74 of file ipv4-route.cc.
References m_outputDevice, and NS_LOG_FUNCTION.
Ipv4Address ns3::Ipv4Route::GetSource | ( | ) | const |
Definition at line 46 of file ipv4-route.cc.
References m_source, and NS_LOG_FUNCTION.
Referenced by ns3::operator<<().
void ns3::Ipv4Route::SetDestination | ( | Ipv4Address | dest | ) |
dest | Destination Ipv4Address |
Definition at line 25 of file ipv4-route.cc.
References m_dest, and NS_LOG_FUNCTION.
void ns3::Ipv4Route::SetGateway | ( | Ipv4Address | gw | ) |
gw | Gateway (next hop) Ipv4Address |
Definition at line 53 of file ipv4-route.cc.
References m_gateway, and NS_LOG_FUNCTION.
Equivalent in Linux to dst_entry.dev.
outputDevice | pointer to NetDevice for outgoing packets |
Definition at line 67 of file ipv4-route.cc.
References m_outputDevice, and NS_LOG_FUNCTION.
void ns3::Ipv4Route::SetSource | ( | Ipv4Address | src | ) |
src | Source Ipv4Address |
Definition at line 39 of file ipv4-route.cc.
References m_source, and NS_LOG_FUNCTION.
|
private |
Destination address.
Definition at line 80 of file ipv4-route.h.
Referenced by GetDestination(), and SetDestination().
|
private |
Gateway address.
Definition at line 82 of file ipv4-route.h.
Referenced by GetGateway(), and SetGateway().
Output device.
Definition at line 83 of file ipv4-route.h.
Referenced by GetOutputDevice(), and SetOutputDevice().
|
private |
Source address.
Definition at line 81 of file ipv4-route.h.
Referenced by GetSource(), and SetSource().