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

(-)a/src/internet/model/tcp-l4-protocol.cc (+2 lines)
 Lines 537-542    Link Here 
537
  if (ipv4 != 0)
537
  if (ipv4 != 0)
538
    {
538
    {
539
      Ipv4Header header;
539
      Ipv4Header header;
540
      header.SetSource (saddr);
540
      header.SetDestination (daddr);
541
      header.SetDestination (daddr);
541
      header.SetProtocol (PROT_NUMBER);
542
      header.SetProtocol (PROT_NUMBER);
542
      Socket::SocketErrno errno_;
543
      Socket::SocketErrno errno_;
 Lines 580-585    Link Here 
580
  if (ipv6 != 0)
581
  if (ipv6 != 0)
581
    {
582
    {
582
      Ipv6Header header;
583
      Ipv6Header header;
584
      header.SetSourceAddress (saddr);
583
      header.SetDestinationAddress (daddr);
585
      header.SetDestinationAddress (daddr);
584
      header.SetNextHeader (PROT_NUMBER);
586
      header.SetNextHeader (PROT_NUMBER);
585
      Socket::SocketErrno errno_;
587
      Socket::SocketErrno errno_;

Return to bug 2137