View | Details | Raw Unified | Return to bug 526
Collapse All | Expand All

(-)a/src/devices/point-to-point/point-to-point-net-device.cc (-1 / +1 lines)
 Lines 226-233    Link Here 
226
  //
226
  //
227
  NS_ASSERT_MSG(m_txMachineState == READY, "Must be READY to transmit");
227
  NS_ASSERT_MSG(m_txMachineState == READY, "Must be READY to transmit");
228
  m_txMachineState = BUSY;
228
  m_txMachineState = BUSY;
229
  m_currentPkt = p;
229
  m_phyTxBeginTrace (m_currentPkt);
230
  m_phyTxBeginTrace (m_currentPkt);
230
  m_currentPkt = p;
231
231
232
  Time txTime = Seconds (m_bps.CalculateTxTime(p->GetSize()));
232
  Time txTime = Seconds (m_bps.CalculateTxTime(p->GetSize()));
233
  Time txCompleteTime = txTime + m_tInterframeGap;
233
  Time txCompleteTime = txTime + m_tInterframeGap;

Return to bug 526