DNSFailRule

open class DNSFailRule: Rule

The rule matches the request which failed to look up.

  • Undocumented

    Declaration

    Swift

    open class DNSFailRule: Rule
  • Create a new DNSFailRule instance.

    Declaration

    Swift

    public init(adapterFactory: AdapterFactory)

    Parameters

    adapterFactory

    The factory which builds a corresponding adapter when needed.

  • Match DNS request to this rule.

    Declaration

    Swift

    override open func matchDNS(_ session: DNSSession, type: DNSSessionMatchType) -> DNSSessionMatchResult

    Parameters

    session

    The DNS session to match.

    type

    What kind of information is available.

    Return Value

    The result of match.

  • Match connect session to this rule.

    Declaration

    Swift

    override open func match(_ session: ConnectSession) -> AdapterFactory?

    Parameters

    session

    connect session to match.

    Return Value

    The configured adapter.