From 48b814e882ba8395bc4ee135be2d0c8a920e0934 Mon Sep 17 00:00:00 2001 From: Craig Dowell Date: Sun, 8 Aug 2010 18:52:20 -0700 Subject: [PATCH] IsMulticast returns true in point-to-point device --- src/devices/point-to-point/point-to-point-net-device.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/devices/point-to-point/point-to-point-net-device.cc b/src/devices/point-to-point/point-to-point-net-device.cc index 58834eabc..d201da809 100644 --- a/src/devices/point-to-point/point-to-point-net-device.cc +++ b/src/devices/point-to-point/point-to-point-net-device.cc @@ -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