IsMulticast returns true in point-to-point device

This commit is contained in:
Craig Dowell
2010-08-08 18:52:20 -07:00
parent e3f7114daf
commit 48b814e882

View File

@@ -427,14 +427,10 @@ PointToPointNetDevice::GetBroadcast (void) const
return Mac48Address ("ff:ff:ff:ff:ff:ff");
}
//
// We don't deal with multicast here. It doesn't make sense to include some
// of the one destinations on the network but exclude some of the others.
//
bool
PointToPointNetDevice::IsMulticast (void) const
{
return false;
return true;
}
Address