Uses of Interface
jnetpcap.capture.Capture

Packages that use Capture
jnetpcap.capture A network packet capture framework. 
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 Capture in jnetpcap.capture
 

Subinterfaces of Capture in jnetpcap.capture
 interface FileCapture
          Immutable interface to an open capture file.
 interface LiveCapture
          A network packet cature on a live network interface.
 interface MutableCapture<T extends CapturePacket>
          Extends the immutable Capture interface and adds a number of methods to add, remove, move packets or seek within the underlying packet dataset.
 interface MutableFileCapture
          Extends the immutable FileCapture and adds methods to manipulate the packets stored in a capture file.
 

Methods in jnetpcap.capture with parameters of type Capture
 void CaptureFactory.Factory.append(Capture source, FileCapture destination)
          Copies all of the CapturePackets returned by the source into the already open capture file.
static void CaptureFactory.append(MutableCapture destination, Capture... sources)
          Copies all of the CapturePackets returned by the sources into the already open capture file.
static void CaptureFactory.catFile(java.io.File file, Capture... sources)
          Copies all of the CapturePackets returned by the source a destination capture file.
 void CaptureFactory.Factory.catFile(java.io.File dst, Capture... srcs)
          Concatenate all the files into the
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.
 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.
 

Uses of Capture in jnetpcap.capture.file.nap
 

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

Uses of Capture in jnetpcap.capture.file.pcap
 

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

Uses of Capture in jnetpcap.capture.file.snoop
 

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