// /// Encapsulation for data captured on a network device by PacketCapture's // /// raw capture interface. // /// // ///
// /// Bytes are dropped when the snapshot length (a ceiling on the number of // /// bytes per packet to capture) is smaller than the actual number of bytes // /// in the packet on the wire. In other words, when caplen exceeds snaplen, // /// bytes are dropped and droplen will be nonzero. Otherwise, all the // /// packet bytes were captured and droplen is zero. // ///