no need to do SendFrom in tap-bridge
authorCraig Dowell <craigdo@ee.washington.edu>
Mon, 02 Feb 2009 11:43:10 -0800
changeset 4178 bd8625e5913a
parent 4177 1212830d6f76
child 4179 2758871405b7
no need to do SendFrom in tap-bridge
src/devices/tap-bridge/tap-bridge.cc
--- a/src/devices/tap-bridge/tap-bridge.cc	Mon Feb 02 11:39:18 2009 -0800
+++ b/src/devices/tap-bridge/tap-bridge.cc	Mon Feb 02 11:43:10 2009 -0800
@@ -620,7 +620,11 @@
   NS_LOG_LOGIC ("Pkt LengthType is " << type);
 
   NS_LOG_LOGIC ("Forwarding packet");
+#if 0
   m_bridgedDevice->SendFrom (packet, src, dst, type);
+#else
+  m_bridgedDevice->Send (packet, dst, type);
+#endif
 }
 
 Ptr<Packet>