Uses of Interface
jnetpcap.capture.MutableCapture

Packages that use MutableCapture
jnetpcap.capture A network packet capture framework. 
jnetpcap.capture.file.pcap PCAP file format as defined by Libpcap library. 
jnetpcap.capture.file.snoop Sun's SNOOP capture file format (RFC 1761) 
 

Uses of MutableCapture in jnetpcap.capture
 

Subinterfaces of MutableCapture in jnetpcap.capture
 interface MutableFileCapture
          Extends the immutable FileCapture and adds methods to manipulate the packets stored in a capture file.
 

Methods in jnetpcap.capture that return MutableCapture
 MutableCapture<T> Capture.getMutableCapture()
          Converts this capture session from immutable Capture to MutableCapture which provides methods for adding, removing, moving and seeking (searching) around the underlying storage and packet dataset.
 

Methods in jnetpcap.capture with parameters of type MutableCapture
static void CaptureFactory.append(MutableCapture destination, Capture... sources)
          Copies all of the CapturePackets returned by the sources into the already open capture file.
 

Uses of MutableCapture in jnetpcap.capture.file.pcap
 

Subinterfaces of MutableCapture in jnetpcap.capture.file.pcap
 interface PcapFile
          PCAP file format from tcpdump.org folks.
 

Uses of MutableCapture in jnetpcap.capture.file.snoop
 

Subinterfaces of MutableCapture in jnetpcap.capture.file.snoop
 interface SnoopFile
          SNOOP capture file format from SUN Microsystem's folks.