View | Details | Raw Unified | Return to bug 587
Collapse All | Expand All

(-)a/src/internet-stack/ipv4-list-routing-impl.cc (-1 / +1 lines)
 Lines 199-205    Link Here 
199
{
199
{
200
  NS_LOG_FUNCTION (this << routingProtocol->GetInstanceTypeId () << priority);
200
  NS_LOG_FUNCTION (this << routingProtocol->GetInstanceTypeId () << priority);
201
  m_routingProtocols.push_back
201
  m_routingProtocols.push_back
202
    (std::pair<int, Ptr<Ipv4RoutingProtocol> > (-priority, routingProtocol));
202
    (std::pair<int, Ptr<Ipv4RoutingProtocol> > (priority, routingProtocol));
203
  m_routingProtocols.sort ();
203
  m_routingProtocols.sort ();
204
}
204
}
205
205

Return to bug 587