no need to do SendFrom in tap-bridge

This commit is contained in:
Craig Dowell
2009-02-02 11:43:10 -08:00
parent cfe6df26a9
commit 00316ff330

View File

@@ -620,7 +620,11 @@ TapBridge::ForwardToBridgedDevice (uint8_t *buf, uint32_t len)
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>