Dns C Reference Documentation

Dns

Current Version: 10.1.2

API for managing DNS nameservers to be used by Chilkat, and for doing DNS queries.

Create/Dispose

HCkDns instance = CkDns_Create();
// ...
CkDns_Dispose(instance);
HCkDns CkDns_Create(void);

Creates an instance of the HCkDns object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.

void CkDns_Dispose(HCkDns handle);

Objects created by calling CkDns_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkDns_Dispose.

Callback Functions

void CkDns_setAbortCheck(HCkDns cHandle, BOOL (*fnAbortCheck)(void));

Provides the opportunity for a method call to be aborted. If TRUE is returned, the operation in progress is aborted. Return FALSE to allow the current method call to continue. This callback function is called periodically based on the value of the HeartbeatMs property. (If HeartbeatMs is 0, then no callbacks are made.) As an example, to make 5 AbortCheck callbacks per second, set the HeartbeatMs property equal to 200.

void CkDns_setPercentDone(HCkDns cHandle, BOOL (*fnPercentDone)(int pctDone));

Provides the percentage completed for any method that involves network communications or time-consuming processing (assuming it is a method where a percentage completion can be measured). This callback is only called when it is possible to know a percentage completion, and when it makes sense to express the operation as a percentage completed. The pctDone argument will have a value from 1 to 100. For methods that complete very quickly, the number of PercentDone callbacks will vary, but the final callback should have a value of 100. For long running operations, no more than one callback per percentage point will occur (for example: 1, 2, 3, ... 98, 99, 100).

This callback counts as an AbortCheck callback, and takes the place of the AbortCheck event when it fires.

The return value indicates whether the method call should be aborted, or whether it should proceed. Return TRUE to abort, and FALSE to proceed.

void CkDns_setProgressInfo(HCkDns cHandle, void (*fnProgressInfo)(const char *name, const char *value));

This is a general callback that provides name/value information about what is happening at certain points during a method call. To see the information provided in ProgressInfo callbacks, if any, write code to handle this event and log the name/value pairs. Most are self-explanatory.

void CkDns_setTaskCompleted(HCkDns cHandle, void (*fnTaskCompleted)(HCkTask hTask));

Called in the background thread when an asynchronous task completes. (Note: When an async method is running, all callbacks are in the background thread.)

Properties

DebugLogFilePath
void CkDns_getDebugLogFilePath(HCkDns cHandle, HCkString retval);
void CkDns_putDebugLogFilePath(HCkDns cHandle, const char *newVal);
const char *CkDns_debugLogFilePath(HCkDns cHandle);

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
HeartbeatMs
int CkDns_getHeartbeatMs(HCkDns cHandle);
void CkDns_putHeartbeatMs(HCkDns cHandle, int newVal);
Introduced in version 9.5.0.96

The number of milliseconds between each AbortCheck event callback. The AbortCheck callback allows an application to abort any DNS operation prior to completion. If HeartbeatMs is 0 (the default), no AbortCheck event callbacks will fire.

top
LastErrorHtml
void CkDns_getLastErrorHtml(HCkDns cHandle, HCkString retval);
const char *CkDns_lastErrorHtml(HCkDns cHandle);

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
void CkDns_getLastErrorText(HCkDns cHandle, HCkString retval);
const char *CkDns_lastErrorText(HCkDns cHandle);

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
void CkDns_getLastErrorXml(HCkDns cHandle, HCkString retval);
const char *CkDns_lastErrorXml(HCkDns cHandle);

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
BOOL CkDns_getLastMethodSuccess(HCkDns cHandle);
void CkDns_putLastMethodSuccess(HCkDns cHandle, BOOL newVal);

Indicates the success or failure of the most recent method call: TRUE means success, FALSE means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages.

top
MaxWaitMs
int CkDns_getMaxWaitMs(HCkDns cHandle);
void CkDns_putMaxWaitMs(HCkDns cHandle, int newVal);
Introduced in version 9.5.0.96

The maxiumum number of milliseconds to wait for the answer to a DNS query. A value of 0 is to wait indefinitely (no timeout). It's not a good idea to specify 0 (infinite timeout) or a value less than 1000 (1 second). The default value is 10000 milliseconds.

top
NumNameservers
int CkDns_getNumNameservers(HCkDns cHandle);
Introduced in version 9.5.0.96

The number of nameservers currently being used by Chilkat for DNS queries in all objects/classes, such as for HTTP, Email, FTP, SSH, etc.

top
TlsPref
int CkDns_getTlsPref(HCkDns cHandle);
void CkDns_putTlsPref(HCkDns cHandle, int newVal);
Introduced in version 9.5.0.96

Specifies the TLS preference. Possible values are:

  • 0 = No TLS
  • 1 = Prefer TLS if possible.
  • 2 = Require TLS

The default value is 0. If TLS is preferred then DNS nameservers with TLS capability will be tried first. If none succeed, then UDP/TCP will be tried. If TLS is required, then only TLS capable nameservers will be tried and all DNS queries will use TLS.

Note: To use TLS, your application needs to first specify nameservers by calling AddNameserver once per nameserver with the supportsTls argument set to TRUE.

top
Utf8
BOOL CkDns_getUtf8(HCkDns cHandle);
void CkDns_putUtf8(HCkDns cHandle, BOOL newVal);

When set to TRUE, all "const char *" arguments are interpreted as utf-8 strings. If set to FALSE (the default), then "const char *" arguments are interpreted as ANSI strings. Also, when set to TRUE, and Chilkat method returning a "const char *" is returning the utf-8 representation. If set to FALSE, all "const char *" return values are ANSI strings.

top
VerboseLogging
BOOL CkDns_getVerboseLogging(HCkDns cHandle);
void CkDns_putVerboseLogging(HCkDns cHandle, BOOL newVal);

If set to TRUE, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is FALSE. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
void CkDns_getVersion(HCkDns cHandle, HCkString retval);
const char *CkDns_version(HCkDns cHandle);

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

AddDefaultNameservers
void CkDns_AddDefaultNameservers(HCkDns cHandle);
Introduced in version 9.5.0.96

Adds the default (auto-assigned) nameservers to the collection of nameservers used by Chilkat for DNS queries and domain to IP address lookups.

top
AddNameserver
void CkDns_AddNameserver(HCkDns cHandle, const char *ipAddr, BOOL supportsTls);
Introduced in version 9.5.0.96

Adds a new nameserver to the collection of nameservers used by Chilkat for DNS queries and domain to IP address lookups. The ipAddr specifies the IPv4 address of the nameserver. The supportsTls indicates if the namserver supports DoT (DNS over TLS. DoT uses port 853 for encrypted DNS communication.) If the TlsPreference property is set to 1 or 2, then Chilkat will use TLS nameservers.

top
GetNameserver
BOOL CkDns_GetNameserver(HCkDns cHandle, int index, HCkString outStr);
const char *CkDns_getNameserver(HCkDns cHandle, int index);
Introduced in version 9.5.0.96

Returns the IP address of the Nth nameserver currently used by Chilkat for DNS queries and domain to IP address lookups. The index specifies the index of the nameserver. The 1st nameserver is at index 0.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
Query
BOOL CkDns_Query(HCkDns cHandle, const char *recordType, const char *domain, HCkJsonObject answer);
Introduced in version 9.5.0.96

Performs an DNS query for domain and returns the answer in answer. The type of DNS query is specified in recordType and can be A, AAAA, ALIAS, CAA, MX, NS, SOA, TXT. Additional record types can be added as needed.

top
QueryAsync (1)
HCkTask CkDns_QueryAsync(HCkDns cHandle, const char *recordType, const char *domain, HCkJsonObject answer);
Introduced in version 9.5.0.96

Creates an asynchronous task to call the Query method with the arguments provided.

Returns NULL on failure

top
RemoveAllNameservers
void CkDns_RemoveAllNameservers(HCkDns cHandle);
Introduced in version 9.5.0.96

Removes all nameservers from the collection of nameservers used by Chilkat. An application can call this method to reset to 0 nameservers before adding new nameservers. If a DNS domain to IP address resolution is needed by Chilkat, then the auto-assigned nameserver IP addresses will be automaticaly restored.

top
RemoveNameserver
void CkDns_RemoveNameserver(HCkDns cHandle, const char *ipAddr);
Introduced in version 9.5.0.96

Removes a nameserver from the collection of nameservers used by Chilkat. The ipAddr is the IPv4 address of the nameserver to be removed.

top