Uses of Interface
jnetpcap.capture.MutableFileCapture

Packages that use MutableFileCapture
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 MutableFileCapture in jnetpcap.capture
 

Methods in jnetpcap.capture that return MutableFileCapture
 MutableFileCapture CaptureFactory.Factory.newFile(java.io.File file, FileType type)
          Creates a new empty file of the user specified type.
 MutableFileCapture CaptureFactory.Factory.newFile(java.io.File file, SuppliedFileTypes type, Capture capture)
          Creates a new file and dumps all of the packet from capture to the new file in the proper format.
 MutableFileCapture CaptureFactory.Factory.newFile(java.io.File file, SuppliedFileTypes type, Version version, java.nio.ByteOrder encoding)
          Creates a new file in the specified format and of the specified version and using the specified byte ordering for all block and data record headers.
static MutableFileCapture CaptureFactory.openFile(java.io.File file)
          Opens a file for reading and writting.
 MutableFileCapture CaptureFactory.Factory.openFile(java.io.File file)
          Gets a mutable FileCapture instance for the specified file.
static MutableFileCapture CaptureFactory.openFile(java.io.File file, Filter filter)
          Opens a file for reading and writting while applying a filter to limit what is returned.
 MutableFileCapture CaptureFactory.Factory.openFile(java.io.File file, Filter filter)
          Gets a mutable FileCapture instance for the specified file.
 

Uses of MutableFileCapture in jnetpcap.capture.file.pcap
 

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

Uses of MutableFileCapture in jnetpcap.capture.file.snoop
 

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