Bugzilla – Bug 2717
Ipv4RoutingTableEntry default routes are incorrect
Last modified: 2017-03-31 09:21:53 UTC
The constructor variant used by Ipv4RoutingTableEntry::CreateDefaultRoute () will return a mask of 255.255.255.255 instead of 0.0.0.0. It is a simple fix. - return Ipv4RoutingTableEntry (Ipv4Address::GetZero (), nextHop, interface); + return Ipv4RoutingTableEntry (Ipv4Address::GetZero (), Ipv4Mask::GetZero (), nextHop, interface);
pushed in changeset 12791:3cc9712b81ed