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

(-)a/CHANGES.html (+1 lines)
 Lines 78-83    Link Here 
78
  <li>The GetQueueSize method of some QueueDisc subclasses (e.g., Red) has been removed and replaced by the GetCurrentSize method of the QueueDisc base class.</li>
78
  <li>The GetQueueSize method of some QueueDisc subclasses (e.g., Red) has been removed and replaced by the GetCurrentSize method of the QueueDisc base class.</li>
79
  <li>All Wi-Fi management frames are now transmitted using the lowest basic rate.</li>
79
  <li>All Wi-Fi management frames are now transmitted using the lowest basic rate.</li>
80
  <li>The Wi-Fi spectrum model now takes into account adjacent channels through OFDM transmit spectrum masks.</li>
80
  <li>The Wi-Fi spectrum model now takes into account adjacent channels through OFDM transmit spectrum masks.</li>
81
  <li> The CsmaNetDevice::PhyTxBeginTrace will trace all attempts to transmit, even those that result in drops. Previously, eventual channel drops were excluded from this trace.</l>
81
</ul>
82
</ul>
82
83
83
<hr>
84
<hr>
(-)a/RELEASE_NOTES (+1 lines)
 Lines 69-74    Link Here 
69
- Bug 2854 - wifi: he-wifi-network crashes when frequency is set at 2.4 GHz
69
- Bug 2854 - wifi: he-wifi-network crashes when frequency is set at 2.4 GHz
70
- Bug 2859 - tcp: calculation of BytesInFlight during partial recovery is fixed 
70
- Bug 2859 - tcp: calculation of BytesInFlight during partial recovery is fixed 
71
- Bug 2866 - tcp: Removed VS warnings on TcpSocketBase
71
- Bug 2866 - tcp: Removed VS warnings on TcpSocketBase
72
- Bug 2872 - csma: Packet copy in CsmaChannel breaks netanim tracing
72
- Bug 2873 - tcp: Potential SIGFPE in TcpYeah
73
- Bug 2873 - tcp: Potential SIGFPE in TcpYeah
73
- Bug 2874 - tcp: Corrected interpretation of RFC 6675 for IsLost check
74
- Bug 2874 - tcp: Corrected interpretation of RFC 6675 for IsLost check
74
- Bug 2875 - tcp: Use Rule3 of RFC6675 only with SACK enabled
75
- Bug 2875 - tcp: Use Rule3 of RFC6675 only with SACK enabled
(-)a/src/csma/model/csma-net-device.cc (-1 / +1 lines)
 Lines 541-546    Link Here 
541
      //
541
      //
542
      // The channel is free, transmit the packet
542
      // The channel is free, transmit the packet
543
      //
543
      //
544
      m_phyTxBeginTrace (m_currentPkt);
544
      if (m_channel->TransmitStart (m_currentPkt, m_deviceId) == false)
545
      if (m_channel->TransmitStart (m_currentPkt, m_deviceId) == false)
545
        {
546
        {
546
          NS_LOG_WARN ("Channel TransmitStart returns an error");
547
          NS_LOG_WARN ("Channel TransmitStart returns an error");
 Lines 556-562    Link Here 
556
          //
557
          //
557
          m_backoff.ResetBackoffTime ();
558
          m_backoff.ResetBackoffTime ();
558
          m_txMachineState = BUSY;
559
          m_txMachineState = BUSY;
559
          m_phyTxBeginTrace (m_currentPkt);
560
560
561
          Time tEvent = m_bps.CalculateBytesTxTime (m_currentPkt->GetSize ());
561
          Time tEvent = m_bps.CalculateBytesTxTime (m_currentPkt->GetSize ());
562
          NS_LOG_LOGIC ("Schedule TransmitCompleteEvent in " << tEvent.GetSeconds () << "sec");
562
          NS_LOG_LOGIC ("Schedule TransmitCompleteEvent in " << tEvent.GetSeconds () << "sec");

Return to bug 2872