Copyright 1998 by the Massachusetts Institute of Technology.
SPDX-License-Identifier: MIT
#include <ares.h> typedef void (*ares_callback_dnsrec)(void *arg, ares_status_t status, size_t timeouts, const ares_dns_record_t *dnsrec); ares_status_t ares_query_dnsrec(ares_channel_t *channel, const char *name, ares_dns_class_t dnsclass, ares_dns_rec_type_t type, ares_callback_dnsrec callback, void *arg, unsigned short *qid); typedef void (*ares_callback)(void *arg, int status, int timeouts, unsigned char *abuf, int alen); void ares_query(ares_channel_t *channel, const char *name, int dnsclass, int type, ares_callback callback, void *arg);
19 ARES_SUCCESS The query completed successfully.
19 ARES_ENODATA The query completed but contains no answers.
19 ARES_EFORMERR The query completed but the server claims that the query was malformatted.
19 ARES_ESERVFAIL The query completed but the server claims to have experienced a failure. (This code can only occur if the ARES_FLAG_NOCHECKRESP flag was specified at channel initialization time; otherwise, such responses are ignored at the ares_send_dnsrec(3) level.)
19 ARES_ENOTFOUND The query completed but the queried-for domain name was not found.
19 ARES_ENOTIMP The query completed but the server does not implement the operation requested by the query. (This code can only occur if the ARES_FLAG_NOCHECKRESP flag was specified at channel initialization time; otherwise, such responses are ignored at the ares_send_dnsrec(3) level.)
19 ARES_EREFUSED The query completed but the server refused the query. (This code can only occur if the ARES_FLAG_NOCHECKRESP flag was specified at channel initialization time; otherwise, such responses are ignored at the ares_send_dnsrec(3) level.)
19 ARES_EBADNAME The query name name could not be encoded as a domain name, either because it contained a zero-length label or because it contained a label of more than 63 characters.
19 ARES_ETIMEOUT No name servers responded within the timeout period.
19 ARES_ECONNREFUSED No name servers could be contacted.
19 ARES_ENOMEM Memory was exhausted.
19 ARES_ECANCELLED The query was cancelled.
19 ARES_EDESTRUCTION The name service channel channel is being destroyed; the query will not be completed.
19 ARES_ENOSERVER The query will not be completed because no DNS servers were configured on the channel.
The callback argument timeouts reports how many times a query timed out during the execution of the given request. If the query completed (even if there was something wrong with it, as indicated by some of the above error codes), the callback argument dnsrec or abuf will be non-NULL, otherwise they will be NULL.