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

(-)a/src/devices/tap-bridge/tap-bridge.cc (-1 / +2 lines)
 Lines 770-776    Link Here 
770
  NS_LOG_LOGIC ("Pkt LengthType is " << header.GetLengthType ());
770
  NS_LOG_LOGIC ("Pkt LengthType is " << header.GetLengthType ());
771
  NS_LOG_LOGIC ("Pkt size is " << p->GetSize ());
771
  NS_LOG_LOGIC ("Pkt size is " << p->GetSize ());
772
772
773
  write (m_sock, p->PeekData (), p->GetSize ());
773
  int ign; //needed to avoid "unused return value" warnings
774
  ign=write (m_sock, p->PeekData (), p->GetSize ());
774
}
775
}
775
776
776
void 
777
void 

Return to bug 488