blob: b89abfeb85a8909f89703438224edab0d398e156 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001.\"
2.\" Copyright 1998 by the Massachusetts Institute of Technology.
3.\"
4.\" Permission to use, copy, modify, and distribute this
5.\" software and its documentation for any purpose and without
6.\" fee is hereby granted, provided that the above copyright
7.\" notice appear in all copies and that both that copyright
8.\" notice and this permission notice appear in supporting
9.\" documentation, and that the name of M.I.T. not be used in
10.\" advertising or publicity pertaining to distribution of the
11.\" software without specific, written prior permission.
12.\" M.I.T. makes no representations about the suitability of
13.\" this software for any purpose. It is provided "as is"
14.\" without express or implied warranty.
15.\"
16.TH ARES_SEND 3 "25 July 1998"
17.SH NAME
18ares_send \- Initiate a DNS query
19.SH SYNOPSIS
20.nf
21.B #include <ares.h>
22.PP
23.B typedef void (*ares_callback)(void *\fIarg\fP, int \fIstatus\fP,
24.B int \fItimeouts\fP, unsigned char *\fIabuf\fP, int \fIalen\fP)
25.PP
26.B void ares_send(ares_channel \fIchannel\fP, const unsigned char *\fIqbuf\fP,
27.B int \fIqlen\fP, ares_callback \fIcallback\fP, void *\fIarg\fP)
28.fi
29.SH DESCRIPTION
30The
31.B ares_send
32function initiates a DNS query on the name service channel identified
33by
34.IR channel .
35The parameters
36.I qbuf
37and
38.I qlen
39give the DNS query, which should already have been formatted according
40to the DNS protocol. When the query is complete or has failed, the
41ares library will invoke
42.IR callback .
43Completion or failure of the query may happen immediately, or may
44happen during a later call to
45.BR ares_process (3)
46or
47.BR ares_destroy (3).
48.PP
49The callback argument
50.I arg
51is copied from the
52.B ares_send
53argument
54.IR arg .
55The callback argument
56.I status
57indicates whether the query succeeded and, if not, how it failed. It
58may have any of the following values:
59.TP 19
60.B ARES_SUCCESS
61The query completed.
62.TP 19
63.B ARES_EBADQUERY
64The query buffer was poorly formed (was not long enough for a DNS
65header or was too long for TCP transmission).
66.TP 19
67.B ARES_ETIMEOUT
68No name servers responded within the timeout period.
69.TP 19
70.B ARES_ECONNREFUSED
71No name servers could be contacted.
72.TP 19
73.B ARES_ENOMEM
74Memory was exhausted.
75.TP 19
76.B ARES_ECANCELLED
77The query was cancelled.
78.TP 19
79.B ARES_EDESTRUCTION
80The name service channel
81.I channel
82is being destroyed; the query will not be completed.
83.PP
84The callback argument
85.I timeouts
86reports how many times a query timed out during the execution of the
87given request.
88.PP
89If the query completed, the callback argument
90.I abuf
91points to a result buffer of length
92.IR alen .
93If the query did not complete,
94.I abuf
95will be NULL and
96.I alen
97will be 0.
98.PP
99Unless the flag
100.B ARES_FLAG_NOCHECKRESP
101was set at channel initialization time,
102.B ares_send
103will normally ignore responses whose questions do not match the
104questions in
105.IR qbuf ,
106as well as responses with reply codes of
107.BR SERVFAIL ,
108.BR NOTIMP ,
109and
110.BR REFUSED .
111Unlike other query functions in the ares library, however,
112.B ares_send
113does not inspect the header of the reply packet to determine the error
114status, so a callback status of
115.B ARES_SUCCESS
116does not reflect as much about the response as for other query
117functions.
118.SH SEE ALSO
119.BR ares_process (3)
120.SH AUTHOR
121Greg Hudson, MIT Information Systems
122.br
123Copyright 1998 by the Massachusetts Institute of Technology.