RTTThresholdFilter

@interface RTTThresholdFilter : NSObject <IFilter>

Simple filter that rejects all candidates where round trip time exceeds a specified threshold.

  • RTT threshold in nano seconds

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) uint64_t RTTThresholdNanos;

    Swift

    var rttThresholdNanos: UInt64 { get set }
  • Undocumented

    Declaration

    Objective-C

    @interface RTTThresholdFilter : NSObject <IFilter>
  • initialise filter with an RTT threshold value in milliseconds.

    Declaration

    Objective-C

    - (id)initWithThreshold:(uint32_t)rtt_threshold_ms;

    Swift

    init!(threshold rtt_threshold_ms: UInt32)

    Parameters

    rtt_threshold_ms

    rtt threshold value in milliseconds

    Return Value

    initialised RTTThresholdFilter instance