diff --git a/CHANGES.html b/CHANGES.html index aca0ba64e..d2269f231 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -52,6 +52,21 @@ us a note on ns-developers mailing list.
When performing route lookup, first match for longest prefix, and then +based on metrics (default metric = 0). If metrics are equal, most recent +addition is picked. Extends API for support of metrics but preserves +backward compatibility. One small change is that the default route +is no longer stored as index 0 route in the host route table so +GetDefaultRoute () must be used. +
+Add ability to inject and withdraw routes to Ipv4GlobalRouting. This +allows a user to insert a route and have it redistributed like an OSPF +external LSA to the rest of the topology. +
+New classes AthstatsWifiTraceSink and AthstatsHelper.
@@ -94,6 +109,13 @@ router solicitation, DADWifiMode now has a WifiPhyStandard attribute which identifies the standard the WifiMode belongs to. To properly set this attribute when creating a new WifiMode, it is now required to explicitly pass a WifiPhyStandard parameter to all WifiModeFactory::CreateXXXX() methods. The WifiPhyStandard value of an existing WifiMode can be retrieved using the new method WifiMode::GetStandard().
In order to have multiple link change callback in NetDevice (i.e. to flush ARP and IPv6 neighbor discovery caches), the following member method has been renamed:
++- virtual void SetLinkChangeCallback (Callback<void> callback); ++ virtual void AddLinkChangeCallback (Callback<void> callback);+Now each NetDevice subclasses have a TracedCallback<> object (list of callbacks) instead of Callback<void> ones. +