Bug 2090 - (rip-ng) Routes may be added twice on interface activation

This commit is contained in:
Tommaso Pecorella
2015-04-08 18:14:28 +02:00
parent 79e72f03fa
commit 6b3f645a55
2 changed files with 1 additions and 4 deletions

View File

@@ -36,6 +36,7 @@ Bugs fixed
- Bug 2077 - Icmpv6L4Protocol::HandleDestinationUnreachable must check the packet size, not its serialized size
- Bug 2079 - mcs variable in ht-wifi-network example is confusing
- Bug 2083 - BridgeNetDevice may send corrupted packets
- Bug 2090 - (rip-ng) Routes may be added twice on interface activation
Known issues
------------

View File

@@ -321,10 +321,6 @@ void RipNg::NotifyInterfaceUp (uint32_t i)
{
Ipv6InterfaceAddress address = m_ipv6->GetAddress (i, j);
Ipv6Address networkAddress = address.GetAddress ().CombinePrefix (address.GetPrefix ());
Ipv6Prefix networkMask = address.GetPrefix ();
AddNetworkRouteTo (networkAddress, networkMask, i);
if (address.GetScope() == Ipv6InterfaceAddress::LINKLOCAL && sendSocketFound == false && activeInterface == true)
{
NS_LOG_LOGIC ("RIPng: adding sending socket to " << address.GetAddress ());