Uses of Interface
jnetpcap.filter.FilterTarget

Packages that use FilterTarget
jnetpcap.filter Main filter package. 
jnetpcap.filter.bpf BPF (Berkley Packet Filter) extension for filter framework. 
 

Uses of FilterTarget in jnetpcap.filter
 

Methods in jnetpcap.filter with parameters of type FilterTarget
 boolean Filter.execute(java.nio.ByteBuffer buffer, FilterTarget dlt)
          Executes the given filter and returns the result of the evaluation against the buffer.
 boolean Filter.And.execute(java.nio.ByteBuffer buffer, FilterTarget dlt)
           
 boolean Filter.Or.execute(java.nio.ByteBuffer buffer, FilterTarget dlt)
           
 

Uses of FilterTarget in jnetpcap.filter.bpf
 

Methods in jnetpcap.filter.bpf with parameters of type FilterTarget
 boolean BPFFilter.execute(java.nio.ByteBuffer buffer, FilterTarget dlt)
           
 

Constructors in jnetpcap.filter.bpf with parameters of type FilterTarget
BPFFilter(byte[] bpfCode, FilterTarget encapsulation)