Uses of Interface
jnetpcap.capture.FileCapture

Packages that use FileCapture
jnetpcap.capture A network packet capture framework. 
jnetpcap.capture.file Allows full access to capture file structure. 
jnetpcap.capture.file.nap Network cAPture file format. 
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 FileCapture in jnetpcap.capture
 

Subinterfaces of FileCapture 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 with type parameters of type FileCapture
<C extends FileCapture>
C
FileCapture.asType(java.lang.Class<C> c)
          Converts the generic capture file into a more specific type.
 

Methods in jnetpcap.capture that return FileCapture
static FileCapture CaptureFactory.newFile(java.io.File file, SuppliedFileTypes type)
          Creates a new file of the request type
static FileCapture CaptureFactory.newFile(java.io.File file, SuppliedFileTypes type, Capture capture)
          A convenience utility method which creates a new file and dumps all of the packet from capture to the new file in the proper format.
static FileCapture CaptureFactory.newFile(java.io.File file, SuppliedFileTypes type, Version version, java.nio.ByteOrder encoding)
          Creates a new file in the specified format, specified version and using the specified byte encoding.
static FileCapture CaptureFactory.openFile(java.io.InputStream in)
          Uses an InputStream for reading in a capture.
 FileCapture CaptureFactory.LocalFactory.openFile(java.io.InputStream in)
          Opens up the input stream supplied and starts decoding of the stream using as if it was a read-only capture file.
 

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

Uses of FileCapture in jnetpcap.capture.file
 

Methods in jnetpcap.capture.file that return FileCapture
 FileCapture Record.getCaptureFile()
           
 

Uses of FileCapture in jnetpcap.capture.file.nap
 

Subinterfaces of FileCapture in jnetpcap.capture.file.nap
 interface NapFile
          NAP capture file format from Sly Technologies folks.
 

Uses of FileCapture in jnetpcap.capture.file.pcap
 

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

Uses of FileCapture in jnetpcap.capture.file.snoop
 

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