Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

lookUpDNS

Sends a lookup query to the stated host and returns the result:

Code Block
drudr lookUpDNS 
	( string queryType, 
	  string queryString, 
	  string host, 
	  int port, 
	  int timeout, 
	  int retries )

...

ParameterDescription
queryType The query type to be used, e g NAPTR, AAAAAAA, CNAME, etc. For a full list, see httpsee https://www.dnsjava.org/docjavadoc.io/static/dnsjava/dnsjava/3.3.1/org/xbill/DNS/Type.html.
queryStringThe string to be used in the query.
hostThe host that should be used for the lookup.
portThe port that should be used for the lookup.
timeout

The number of milliseconds to wait before timeout.

retries

The number of retries you want to make before returning an error code and proceeding.

Returns A DNSResponseUDR containing the lookup result (list<DNSRecordUDRs>), status code (int) and error message (string)

...