PCFilter Interface

Implements

public interface PCFilter
extends Indexable, HasParent<PacketCapture>, HasInner<PacketCaptureFilter>

Client-side representation of packet capture filter.

Method Summary

Modifier and Type Method and Description
abstract java.lang.String localIPAddress()
abstract java.lang.String localPort()
abstract PcProtocol protocol()
abstract java.lang.String remoteIPAddress()
abstract java.lang.String remotePort()

Method Details

localIPAddress

public abstract String localIPAddress()

Returns:

local IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"? for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

localPort

public abstract String localPort()

Returns:

local port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

protocol

public abstract PcProtocol protocol()

Returns:

protocol to be filtered on.

remoteIPAddress

public abstract String remoteIPAddress()

Returns:

remote IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

remotePort

public abstract String remotePort()

Returns:

remote port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

Applies to