Response Event

Fires after a DNS query.

Syntax

public class DefaultDnsEventListener implements DnsEventListener {
  ...
  public void response(DnsResponseEvent e) {}
  ...
}

public class DnsResponseEvent {
  public int requestId;
  public String domain;
  public int statusCode;
  public String description;
  public boolean authoritative;
}

Remarks

The Response event will fire after a call to Query. The RequestId parameter contains the request id associated with the original query. Domain is the domain of the query. The Authoritative parameter is true if the response is from an authoritative name server. If there is an error returned by the server, StatusCode and Description provide them.

Once the query is complete, a single Response event will fire, and the following properties will contain the results:

StatusCodeThe success or error code of the DNS query.
StatusA standard string interpretation of StatusCode.
RecordsThe Records in the last DNS response.
RecordSourceThe source (type) of records being listed.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 Java Edition - Version 20.0 [Build 8307]