The IPv6 representation of a network interface. More...
#include "ipv6-interface.h"
Public Member Functions | |
Ipv6Interface () | |
Constructs an Ipv6Interface. More... | |
Ipv6Interface (const Ipv6Interface &)=delete | |
~Ipv6Interface () override | |
Destructor. More... | |
bool | AddAddress (Ipv6InterfaceAddress iface) |
Add an IPv6 address. More... | |
void | AddAddressCallback (Callback< void, Ptr< Ipv6Interface >, Ipv6InterfaceAddress > addAddressCallback) |
This callback is set when an address is added from an interface with auto-generated Ndisc cache and it allow the neighbor cache helper to update neighbor's Ndisc cache. More... | |
Ipv6InterfaceAddress | GetAddress (uint32_t index) const |
Get an address from IPv6 interface. More... | |
Ipv6InterfaceAddress | GetAddressMatchingDestination (Ipv6Address dst) |
Get an address which is in the same network prefix as destination. More... | |
uint16_t | GetBaseReachableTime () const |
Get the base reachable time. More... | |
uint8_t | GetCurHopLimit () const |
Get the current hop limit value. More... | |
virtual Ptr< NetDevice > | GetDevice () const |
Get the NetDevice. More... | |
Ipv6InterfaceAddress | GetLinkLocalAddress () const |
Get link-local address from IPv6 interface. More... | |
uint16_t | GetMetric () const |
Get the metric. More... | |
uint32_t | GetNAddresses () const |
Get number of addresses on this IPv6 interface. More... | |
Ptr< NdiscCache > | GetNdiscCache () const |
uint16_t | GetReachableTime () const |
Get the reachable time. More... | |
uint16_t | GetRetransTimer () const |
Get the retransmission timer. More... | |
bool | IsDown () const |
Is the interface DOWN ? More... | |
bool | IsForwarding () const |
If the interface allows forwarding packets. More... | |
bool | IsSolicitedMulticastAddress (Ipv6Address address) const |
Checks if the address is a Solicited Multicast address for this interface. More... | |
bool | IsUp () const |
Is the interface UP ? More... | |
Ipv6Interface & | operator= (const Ipv6Interface &)=delete |
Ipv6InterfaceAddress | RemoveAddress (Ipv6Address address) |
Remove the given Ipv6 address from the interface. More... | |
Ipv6InterfaceAddress | RemoveAddress (uint32_t index) |
Remove an address from interface. More... | |
void | RemoveAddressCallback (Callback< void, Ptr< Ipv6Interface >, Ipv6InterfaceAddress > removeAddressCallback) |
This callback is set when an address is removed from an interface with auto-generated Ndisc cache and it allow the neighbor cache helper to update neighbor's Ndisc cache. More... | |
void | Send (Ptr< Packet > p, const Ipv6Header &hdr, Ipv6Address dest) |
Send a packet through this interface. More... | |
void | SetBaseReachableTime (uint16_t baseReachableTime) |
Set the base reachable time. More... | |
void | SetCurHopLimit (uint8_t curHopLimit) |
Set the current hop limit. More... | |
void | SetDevice (Ptr< NetDevice > device) |
Set the NetDevice. More... | |
void | SetDown () |
Disable this interface. More... | |
void | SetForwarding (bool forward) |
Set forwarding enabled or not. More... | |
void | SetMetric (uint16_t metric) |
Set the metric. More... | |
void | SetNode (Ptr< Node > node) |
Set node associated with interface. More... | |
void | SetNsDadUid (Ipv6Address address, uint32_t uid) |
Update NS DAD packet UID of an interface address. More... | |
void | SetReachableTime (uint16_t reachableTime) |
Set the reachable time. More... | |
void | SetRetransTimer (uint16_t retransTimer) |
Set the retransmission timer. More... | |
void | SetState (Ipv6Address address, Ipv6InterfaceAddress::State_e state) |
Update state of an interface address. More... | |
void | SetTrafficControl (Ptr< TrafficControlLayer > tc) |
Set the TrafficControlLayer. More... | |
void | SetUp () |
Enable this interface. More... | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
~Object () override | |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose () |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. More... | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. More... | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. More... | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. More... | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized () const |
Check if the object has been initialized. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o[[maybe_unused]]) |
Assignment operator. More... | |
void | Ref () const |
Increment the reference count. More... | |
void | Unref () const |
Decrement the reference count. More... | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Protected Member Functions | |
void | DoDispose () override |
Dispose this object. More... | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoInitialize () |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. More... | |
Private Types | |
typedef std::list< std::pair< Ipv6InterfaceAddress, Ipv6Address > > | Ipv6InterfaceAddressList |
Container for the Ipv6InterfaceAddresses. More... | |
typedef std::list< std::pair< Ipv6InterfaceAddress, Ipv6Address > >::const_iterator | Ipv6InterfaceAddressListCI |
Const Container Iterator for the Ipv6InterfaceAddresses. More... | |
typedef std::list< std::pair< Ipv6InterfaceAddress, Ipv6Address > >::iterator | Ipv6InterfaceAddressListI |
Container Iterator for the Ipv6InterfaceAddresses. More... | |
Private Member Functions | |
void | DoSetup () |
Initialize interface. More... | |
Private Attributes | |
Callback< void, Ptr< Ipv6Interface >, Ipv6InterfaceAddress > | m_addAddressCallback |
add address callback More... | |
Ipv6InterfaceAddressList | m_addresses |
The addresses assigned to this interface. More... | |
uint16_t | m_baseReachableTime |
Base value used for computing the random reachable time value (in millisecond). More... | |
uint8_t | m_curHopLimit |
Current hop limit. More... | |
Ptr< NetDevice > | m_device |
NetDevice associated with this interface. More... | |
bool | m_forwarding |
Forwarding state. More... | |
bool | m_ifup |
The state of this interface. More... | |
Ipv6InterfaceAddress | m_linkLocalAddress |
The link-local addresses assigned to this interface. More... | |
uint16_t | m_metric |
The metric. More... | |
Ptr< NdiscCache > | m_ndCache |
Neighbor cache. More... | |
Ptr< Node > | m_node |
Node associated with this interface. More... | |
uint16_t | m_reachableTime |
Reachable time (in millisecond). More... | |
Callback< void, Ptr< Ipv6Interface >, Ipv6InterfaceAddress > | m_removeAddressCallback |
remove address callback More... | |
uint16_t | m_retransTimer |
Retransmission timer (in millisecond). More... | |
Ptr< TrafficControlLayer > | m_tc |
TrafficControlLayer associated with this interface. More... | |
Additional Inherited Members | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
The IPv6 representation of a network interface.
By default IPv6 interfaces are created in the "down" state with IP "fe80::1" and a /64 prefix. Before becoming usable, the user must invoke SetUp on them once the final IPv6 address and mask has been set.
Definition at line 52 of file ipv6-interface.h.
|
private |
Container for the Ipv6InterfaceAddresses.
Definition at line 309 of file ipv6-interface.h.
|
private |
Const Container Iterator for the Ipv6InterfaceAddresses.
Definition at line 321 of file ipv6-interface.h.
|
private |
Container Iterator for the Ipv6InterfaceAddresses.
Definition at line 315 of file ipv6-interface.h.
ns3::Ipv6Interface::Ipv6Interface | ( | ) |
Constructs an Ipv6Interface.
Definition at line 51 of file ipv6-interface.cc.
References NS_LOG_FUNCTION.
|
override |
Destructor.
Definition at line 67 of file ipv6-interface.cc.
|
delete |
bool ns3::Ipv6Interface::AddAddress | ( | Ipv6InterfaceAddress | iface | ) |
Add an IPv6 address.
iface | address to add |
Definition at line 210 of file ipv6-interface.cc.
References ns3::Icmpv6L4Protocol::DoDAD(), ns3::Icmpv6L4Protocol::FunctionDadTimeout(), ns3::Ipv6InterfaceAddress::GetAddress(), ns3::Object::GetObject(), ns3::Ipv6::GetProtocol(), ns3::Icmpv6L4Protocol::GetStaticProtocolNumber(), ns3::Ipv6Address::IsAny(), ns3::Ipv6Address::IsLocalhost(), m_addAddressCallback, m_addresses, m_device, m_node, ns3::Ipv6Address::MakeSolicitedAddress(), NS_LOG_FUNCTION, ns3::Simulator::Schedule(), and ns3::Seconds().
Referenced by AddIpv6Address(), DynamicNeighborCacheTest::AddIpv6Address(), DynamicPartialTest::AddIpv6Address(), and DoSetup().
void ns3::Ipv6Interface::AddAddressCallback | ( | Callback< void, Ptr< Ipv6Interface >, Ipv6InterfaceAddress > | addAddressCallback | ) |
This callback is set when an address is added from an interface with auto-generated Ndisc cache and it allow the neighbor cache helper to update neighbor's Ndisc cache.
addAddressCallback | Callback when remove an address. |
Definition at line 606 of file ipv6-interface.cc.
References m_addAddressCallback, and NS_LOG_FUNCTION.
Referenced by ns3::NeighborCacheHelper::PopulateNeighborEntriesIpv6().
|
overrideprotectedvirtual |
Dispose this object.
Reimplemented from ns3::Object.
Definition at line 72 of file ipv6-interface.cc.
References ns3::Object::DoDispose(), m_device, m_ndCache, m_node, m_tc, and NS_LOG_FUNCTION.
|
private |
Initialize interface.
Definition at line 83 of file ipv6-interface.cc.
References AddAddress(), GetDevice(), ns3::Object::GetObject(), ns3::Ipv6::GetProtocol(), ns3::Icmpv6L4Protocol::GetStaticProtocolNumber(), m_device, m_linkLocalAddress, m_ndCache, m_node, ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(), and NS_LOG_FUNCTION.
Referenced by SetUp().
Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddress | ( | uint32_t | index | ) | const |
Get an address from IPv6 interface.
index | index |
Definition at line 297 of file ipv6-interface.cc.
References m_addresses, NS_FATAL_ERROR, and NS_LOG_FUNCTION.
Referenced by ns3::Icmpv6L4Protocol::FunctionDadTimeout(), ns3::Ipv6L3Protocol::GetAddress(), ns3::Icmpv6L4Protocol::HandleNA(), ns3::Icmpv6L4Protocol::HandleNS(), ns3::NeighborCacheHelper::PopulateNeighborEntriesIpv6(), ns3::Ipv6L3Protocol::RemoveAutoconfiguredAddress(), and ns3::NeighborCacheHelper::UpdateCacheByIpv6AddressAdded().
Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddressMatchingDestination | ( | Ipv6Address | dst | ) |
Get an address which is in the same network prefix as destination.
dst | destination address |
Definition at line 387 of file ipv6-interface.cc.
References ns3::Ipv6InterfaceAddress::GetAddress(), ns3::Ipv6InterfaceAddress::GetPrefix(), ns3::Ipv6Prefix::IsMatch(), m_addresses, and NS_LOG_FUNCTION.
Referenced by ns3::Icmpv6L4Protocol::Lookup().
uint16_t ns3::Ipv6Interface::GetBaseReachableTime | ( | ) | const |
Get the base reachable time.
Definition at line 524 of file ipv6-interface.cc.
References m_baseReachableTime, and NS_LOG_FUNCTION.
uint8_t ns3::Ipv6Interface::GetCurHopLimit | ( | ) | const |
Get the current hop limit value.
Definition at line 510 of file ipv6-interface.cc.
References m_curHopLimit, and NS_LOG_FUNCTION.
Get the NetDevice.
Definition at line 139 of file ipv6-interface.cc.
References m_device, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6L3Protocol::AddAutoconfiguredAddress(), ns3::Ipv6L3Protocol::AddIpv6Interface(), ns3::Icmpv6L4Protocol::DoDAD(), DoSetup(), ns3::UdpSocketImpl::ForwardUp6(), ns3::Icmpv6L4Protocol::FunctionDadTimeout(), ns3::Ipv6L3Protocol::GetMtu(), ns3::Ipv6L3Protocol::GetNetDevice(), ns3::Icmpv6L4Protocol::HandleNA(), ns3::Icmpv6L4Protocol::HandleNS(), ns3::Icmpv6L4Protocol::HandleRA(), ns3::Icmpv6L4Protocol::HandleRedirection(), ns3::Icmpv6L4Protocol::HandleRS(), ns3::Ipv6EndPointDemux::Lookup(), ns3::NeighborCacheHelper::PopulateNeighborCache(), ns3::NeighborCacheHelper::PopulateNeighborEntriesIpv6(), ns3::Icmpv6L4Protocol::Receive(), ns3::Icmpv6L4Protocol::ReceiveLLA(), ns3::Ipv6L3Protocol::RemoveAutoconfiguredAddress(), Send(), ns3::NeighborCacheHelper::UpdateCacheByIpv6AddressAdded(), and ns3::NeighborCacheHelper::UpdateCacheByIpv6AddressRemoved().
Ipv6InterfaceAddress ns3::Ipv6Interface::GetLinkLocalAddress | ( | ) | const |
Get link-local address from IPv6 interface.
Definition at line 271 of file ipv6-interface.cc.
References m_linkLocalAddress, and NS_LOG_FUNCTION.
Referenced by ns3::Icmpv6L4Protocol::HandleEchoRequest(), ns3::Icmpv6L4Protocol::HandleNS(), ns3::Ipv6L3Protocol::IpForward(), ns3::Icmpv6L4Protocol::Lookup(), and ns3::NeighborCacheHelper::PopulateNeighborEntriesIpv6().
uint16_t ns3::Ipv6Interface::GetMetric | ( | ) | const |
Get the metric.
Definition at line 153 of file ipv6-interface.cc.
References m_metric, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6L3Protocol::GetMetric().
uint32_t ns3::Ipv6Interface::GetNAddresses | ( | ) | const |
Get number of addresses on this IPv6 interface.
Definition at line 322 of file ipv6-interface.cc.
References m_addresses, and NS_LOG_FUNCTION.
Referenced by ns3::Icmpv6L4Protocol::FunctionDadTimeout(), ns3::Ipv6L3Protocol::GetNAddresses(), ns3::Icmpv6L4Protocol::HandleNA(), ns3::Icmpv6L4Protocol::HandleNS(), ns3::Icmpv6L4Protocol::Lookup(), ns3::NeighborCacheHelper::PopulateNeighborEntriesIpv6(), ns3::Ipv6L3Protocol::RemoveAutoconfiguredAddress(), and ns3::NeighborCacheHelper::UpdateCacheByIpv6AddressAdded().
Ptr< NdiscCache > ns3::Ipv6Interface::GetNdiscCache | ( | ) | const |
Definition at line 591 of file ipv6-interface.cc.
References m_ndCache, and NS_LOG_FUNCTION.
Referenced by ns3::NeighborCacheHelper::AddEntry(), FlushTest::DoRun(), ns3::NeighborCacheHelper::FlushAutoGenerated(), and ns3::NeighborCacheHelper::UpdateCacheByIpv6AddressRemoved().
uint16_t ns3::Ipv6Interface::GetReachableTime | ( | ) | const |
Get the reachable time.
Definition at line 538 of file ipv6-interface.cc.
References m_reachableTime, and NS_LOG_FUNCTION.
uint16_t ns3::Ipv6Interface::GetRetransTimer | ( | ) | const |
Get the retransmission timer.
Definition at line 552 of file ipv6-interface.cc.
References m_retransTimer, and NS_LOG_FUNCTION.
|
static |
Get the type ID.
Definition at line 45 of file ipv6-interface.cc.
References ns3::TypeId::SetParent().
bool ns3::Ipv6Interface::IsDown | ( | ) | const |
Is the interface DOWN ?
Definition at line 167 of file ipv6-interface.cc.
References m_ifup, and NS_LOG_FUNCTION.
bool ns3::Ipv6Interface::IsForwarding | ( | ) | const |
If the interface allows forwarding packets.
Definition at line 196 of file ipv6-interface.cc.
References m_forwarding, and NS_LOG_FUNCTION.
bool ns3::Ipv6Interface::IsSolicitedMulticastAddress | ( | Ipv6Address | address | ) | const |
Checks if the address is a Solicited Multicast address for this interface.
address | the address to check. |
Definition at line 280 of file ipv6-interface.cc.
References first::address, m_addresses, and NS_LOG_FUNCTION.
bool ns3::Ipv6Interface::IsUp | ( | ) | const |
Is the interface UP ?
Definition at line 160 of file ipv6-interface.cc.
References m_ifup, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6L3Protocol::IsUp(), Send(), and ns3::Ipv6L3Protocol::SendRealOut().
|
delete |
Ipv6InterfaceAddress ns3::Ipv6Interface::RemoveAddress | ( | Ipv6Address | address | ) |
Remove the given Ipv6 address from the interface.
address | The Ipv6 address to remove |
Definition at line 360 of file ipv6-interface.cc.
References first::address, ns3::Ipv6Address::GetLoopback(), m_addresses, m_removeAddressCallback, NS_LOG_FUNCTION, and NS_LOG_WARN.
Ipv6InterfaceAddress ns3::Ipv6Interface::RemoveAddress | ( | uint32_t | index | ) |
Remove an address from interface.
index | index to remove |
Definition at line 329 of file ipv6-interface.cc.
References m_addresses, m_removeAddressCallback, NS_FATAL_ERROR, and NS_LOG_FUNCTION.
Referenced by RemoveIpv6Address(), DynamicNeighborCacheTest::RemoveIpv6Address(), and DynamicPartialTest::RemoveIpv6Address().
void ns3::Ipv6Interface::RemoveAddressCallback | ( | Callback< void, Ptr< Ipv6Interface >, Ipv6InterfaceAddress > | removeAddressCallback | ) |
This callback is set when an address is removed from an interface with auto-generated Ndisc cache and it allow the neighbor cache helper to update neighbor's Ndisc cache.
removeAddressCallback | Callback when remove an address. |
Definition at line 598 of file ipv6-interface.cc.
References m_removeAddressCallback, and NS_LOG_FUNCTION.
Referenced by ns3::NeighborCacheHelper::PopulateNeighborEntriesIpv6().
void ns3::Ipv6Interface::Send | ( | Ptr< Packet > | p, |
const Ipv6Header & | hdr, | ||
Ipv6Address | dest | ||
) |
Send a packet through this interface.
p | packet to send |
hdr | IPv6 header |
dest | next hop address of packet. |
Definition at line 407 of file ipv6-interface.cc.
References ns3::Packet::AddHeader(), GetDevice(), ns3::Object::GetObject(), ns3::Ipv6::GetProtocol(), ns3::Icmpv6L4Protocol::GetStaticProtocolNumber(), ns3::Ipv6Address::IsMulticast(), IsUp(), m_addresses, m_device, m_ndCache, m_node, m_tc, NS_ASSERT, NS_ASSERT_MSG, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::NetDevice::PACKET_HOST, ns3::Ipv6L3Protocol::PROT_NUMBER, ns3::TrafficControlLayer::Receive(), and ns3::Simulator::ScheduleNow().
Referenced by ns3::Icmpv6L4Protocol::DoDAD(), ns3::Icmpv6L4Protocol::HandleNA(), ns3::Ipv6L3Protocol::ReachabilityHint(), ns3::Icmpv6L4Protocol::ReceiveLLA(), and ns3::Ipv6L3Protocol::SendRealOut().
void ns3::Ipv6Interface::SetBaseReachableTime | ( | uint16_t | baseReachableTime | ) |
Set the base reachable time.
baseReachableTime | the value to set |
Definition at line 517 of file ipv6-interface.cc.
References m_baseReachableTime, and NS_LOG_FUNCTION.
void ns3::Ipv6Interface::SetCurHopLimit | ( | uint8_t | curHopLimit | ) |
Set the current hop limit.
curHopLimit | the value to set |
Definition at line 503 of file ipv6-interface.cc.
References m_curHopLimit, and NS_LOG_FUNCTION.
Set the NetDevice.
device | NetDevice |
Definition at line 125 of file ipv6-interface.cc.
References m_device, and NS_LOG_FUNCTION.
void ns3::Ipv6Interface::SetDown | ( | ) |
Disable this interface.
Definition at line 187 of file ipv6-interface.cc.
References ns3::NdiscCache::Flush(), m_addresses, m_ifup, m_ndCache, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6L3Protocol::SetDown().
void ns3::Ipv6Interface::SetForwarding | ( | bool | forward | ) |
Set forwarding enabled or not.
forward | forwarding state |
Definition at line 203 of file ipv6-interface.cc.
References m_forwarding, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6L3Protocol::SetForwarding().
void ns3::Ipv6Interface::SetMetric | ( | uint16_t | metric | ) |
Set the metric.
metric | configured routing metric (cost) of this interface |
Definition at line 146 of file ipv6-interface.cc.
References m_metric, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6L3Protocol::SetMetric().
Set node associated with interface.
node | node |
Definition at line 118 of file ipv6-interface.cc.
References m_node, and NS_LOG_FUNCTION.
void ns3::Ipv6Interface::SetNsDadUid | ( | Ipv6Address | address, |
uint32_t | uid | ||
) |
Update NS DAD packet UID of an interface address.
address | IPv6 address |
uid | packet UID |
Definition at line 575 of file ipv6-interface.cc.
References first::address, m_addresses, and NS_LOG_FUNCTION.
Referenced by ns3::Icmpv6L4Protocol::DoDAD().
void ns3::Ipv6Interface::SetReachableTime | ( | uint16_t | reachableTime | ) |
Set the reachable time.
reachableTime | value to set |
Definition at line 531 of file ipv6-interface.cc.
References m_reachableTime, and NS_LOG_FUNCTION.
void ns3::Ipv6Interface::SetRetransTimer | ( | uint16_t | retransTimer | ) |
Set the retransmission timer.
retransTimer | value to set |
Definition at line 545 of file ipv6-interface.cc.
References m_retransTimer, and NS_LOG_FUNCTION.
void ns3::Ipv6Interface::SetState | ( | Ipv6Address | address, |
Ipv6InterfaceAddress::State_e | state | ||
) |
Update state of an interface address.
address | IPv6 address |
state | new state |
Definition at line 559 of file ipv6-interface.cc.
References first::address, m_addresses, and NS_LOG_FUNCTION.
Referenced by ns3::Icmpv6L4Protocol::FunctionDadTimeout(), and ns3::Icmpv6L4Protocol::HandleNA().
void ns3::Ipv6Interface::SetTrafficControl | ( | Ptr< TrafficControlLayer > | tc | ) |
Set the TrafficControlLayer.
tc | TrafficControlLayer object |
Definition at line 132 of file ipv6-interface.cc.
References m_tc, and NS_LOG_FUNCTION.
void ns3::Ipv6Interface::SetUp | ( | ) |
Enable this interface.
Definition at line 174 of file ipv6-interface.cc.
References DoSetup(), m_ifup, and NS_LOG_FUNCTION.
Referenced by ns3::Ipv6L3Protocol::SetUp().
|
private |
add address callback
Definition at line 399 of file ipv6-interface.h.
Referenced by AddAddress(), and AddAddressCallback().
|
private |
The addresses assigned to this interface.
Definition at line 331 of file ipv6-interface.h.
Referenced by AddAddress(), GetAddress(), GetAddressMatchingDestination(), GetNAddresses(), IsSolicitedMulticastAddress(), RemoveAddress(), Send(), SetDown(), SetNsDadUid(), and SetState().
|
private |
Base value used for computing the random reachable time value (in millisecond).
Definition at line 381 of file ipv6-interface.h.
Referenced by GetBaseReachableTime(), and SetBaseReachableTime().
|
private |
Current hop limit.
Definition at line 376 of file ipv6-interface.h.
Referenced by GetCurHopLimit(), and SetCurHopLimit().
NetDevice associated with this interface.
Definition at line 361 of file ipv6-interface.h.
Referenced by AddAddress(), DoDispose(), DoSetup(), GetDevice(), Send(), and SetDevice().
|
private |
Forwarding state.
Definition at line 346 of file ipv6-interface.h.
Referenced by IsForwarding(), and SetForwarding().
|
private |
|
private |
The link-local addresses assigned to this interface.
Definition at line 336 of file ipv6-interface.h.
Referenced by DoSetup(), and GetLinkLocalAddress().
|
private |
The metric.
Definition at line 351 of file ipv6-interface.h.
Referenced by GetMetric(), and SetMetric().
|
private |
Neighbor cache.
Definition at line 371 of file ipv6-interface.h.
Referenced by DoDispose(), DoSetup(), GetNdiscCache(), Send(), and SetDown().
Node associated with this interface.
Definition at line 356 of file ipv6-interface.h.
Referenced by AddAddress(), DoDispose(), DoSetup(), Send(), and SetNode().
|
private |
Reachable time (in millisecond).
The time a neighbor is considered reachable after receiving a reachability confirmation.
Definition at line 387 of file ipv6-interface.h.
Referenced by GetReachableTime(), and SetReachableTime().
|
private |
remove address callback
Definition at line 396 of file ipv6-interface.h.
Referenced by RemoveAddress(), and RemoveAddressCallback().
|
private |
Retransmission timer (in millisecond).
Time between retransmission of NS.
Definition at line 393 of file ipv6-interface.h.
Referenced by GetRetransTimer(), and SetRetransTimer().
|
private |
TrafficControlLayer associated with this interface.
Definition at line 366 of file ipv6-interface.h.
Referenced by DoDispose(), Send(), and SetTrafficControl().