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

(-)a/src/internet-stack/udp-socket-impl.cc (+2 lines)
 Lines 345-350    Link Here 
345
          m_udp->Send (p->Copy (), addri, bcast,
345
          m_udp->Send (p->Copy (), addri, bcast,
346
                       m_endPoint->GetLocalPort (), port);
346
                       m_endPoint->GetLocalPort (), port);
347
          NotifyDataSent (p->GetSize ());
347
          NotifyDataSent (p->GetSize ());
348
          NotifySend (GetTxAvailable ());
348
        }
349
        }
349
      NS_LOG_LOGIC ("Limited broadcast end.");
350
      NS_LOG_LOGIC ("Limited broadcast end.");
350
      return p->GetSize();
351
      return p->GetSize();
 Lines 355-360    Link Here 
355
      m_udp->Send (p->Copy (), ipv4->GetAddress (localIfIndex), dest,
356
      m_udp->Send (p->Copy (), ipv4->GetAddress (localIfIndex), dest,
356
		   m_endPoint->GetLocalPort (), port);
357
		   m_endPoint->GetLocalPort (), port);
357
      NotifyDataSent (p->GetSize ());
358
      NotifyDataSent (p->GetSize ());
359
      NotifySend (GetTxAvailable ());
358
      return p->GetSize();;
360
      return p->GetSize();;
359
    }
361
    }
360
  else
362
  else
(-)a/src/node/packet-socket.cc (+1 lines)
 Lines 329-334    Link Here 
329
  if (!error)
329
  if (!error)
330
    {
330
    {
331
      NotifyDataSent (p->GetSize ());
331
      NotifyDataSent (p->GetSize ());
332
      NotifySend (GetTxAvailable ());
332
    }
333
    }
333
334
334
  if (error)
335
  if (error)

Return to bug 364