Uses of Interface
jnetpcap.capture.CaptureInterface

Packages that use CaptureInterface
jnetpcap.capture A network packet capture framework. 
 

Uses of CaptureInterface in jnetpcap.capture
 

Subinterfaces of CaptureInterface in jnetpcap.capture
 interface MutableCaptureInterface
          Provides methods for setting various properties of the underlying CaptureInterface object.
 

Methods in jnetpcap.capture that return CaptureInterface
 CaptureInterface CapturePacket.getCaptureInterface()
          Returns information about the device that captured this packet.
 CaptureInterface[] LiveCapture.interfaceSnapshot()
          Takes a snapshot of all the CaptureInterface configurations currently open for live capture.
 CaptureInterface[] LiveCapture.interfaceSnapshot(CaptureInterface... currentInterface)
          Takes a snapshot of supplied CaptureInterface configurations currently open for live capture.
 CaptureInterface LiveCapture.setFilter(Filter filter, CaptureInterface currentInterface)
          Sets a new filter for currently open CaptureInterface.
 

Methods in jnetpcap.capture with parameters of type CaptureInterface
 CaptureInterface[] LiveCapture.interfaceSnapshot(CaptureInterface... currentInterface)
          Takes a snapshot of supplied CaptureInterface configurations currently open for live capture.
static LiveCapture CaptureFactory.openLive(CaptureInterface nic)
          Opens up a network interface for live packet capture.
 LiveCapture CaptureFactory.Factory.openLive(Filter filter, CaptureInterface... nics)
           
static LiveCapture CaptureFactory.openLive(Filter filter, CaptureInterface nic)
          Opens up a network interface for live packet capture with a filter.
 void CapturePacket.setCaptureInterface(CaptureInterface device)
          Sets the device that captured this packet.
 CaptureInterface LiveCapture.setFilter(Filter filter, CaptureInterface currentInterface)
          Sets a new filter for currently open CaptureInterface.
 

Method parameters in jnetpcap.capture with type arguments of type CaptureInterface
static LiveCapture CaptureFactory.openLive(java.util.Collection<CaptureInterface> nics)
          Opens up a network interfaces for live packet capture.
static LiveCapture CaptureFactory.openLive(Filter filter, java.util.Collection<CaptureInterface> nics)
          Opens up a network interfaces for live packet capture with a filter.
 LiveCapture CaptureFactory.Factory.openLive(Filter filter, java.util.Collection<CaptureInterface> nics)