]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blob - libares/ares_mkquery.3
34815253bd77f341157ac007f103c00f5f5d2069
[1ts-debian.git] / libares / ares_mkquery.3
1 .\" $Id: ares_mkquery.3,v 1.2 2000/01/05 16:29:43 ghudson Exp $
2 .\"
3 .\" Copyright 1998, 2000 by the Massachusetts Institute of Technology.
4 .\"
5 .\" Permission to use, copy, modify, and distribute this
6 .\" software and its documentation for any purpose and without
7 .\" fee is hereby granted, provided that the above copyright
8 .\" notice appear in all copies and that both that copyright
9 .\" notice and this permission notice appear in supporting
10 .\" documentation, and that the name of M.I.T. not be used in
11 .\" advertising or publicity pertaining to distribution of the
12 .\" software without specific, written prior permission.
13 .\" M.I.T. makes no representations about the suitability of
14 .\" this software for any purpose.  It is provided "as is"
15 .\" without express or implied warranty.
16 .\"
17 .TH ARES_MKQUERY 3 "4 January 2000"
18 .SH NAME
19 ares_mkquery \- Compose a single-question DNS query buffer
20 .SH SYNOPSIS
21 .nf
22 .B #include <ares.h>
23 .PP
24 .B
25 int ares_mkquery(const char *\fIname\fP, int \fIclass\fP, int \fItype\fP,
26 .B
27         unsigned short \fIid\fP, char **\fIbuf\fP, int *\fIbuflen\fP)
28 .fi
29 .SH DESCRIPTION
30 The
31 .B ares_mkquery
32 function composes a DNS query with a single question.
33 The parameter
34 .I name
35 gives the query name as a NUL-terminated C string of period-separated
36 labels optionally ending with a period; periods and backslashes within
37 a label must be escaped with a backlash.  The parameters
38 .I class
39 and
40 .I type
41 give the class and type of the query using the values defined in
42 .BR <arpa/nameser.h> .
43 The parameter
44 .I id
45 gives a 16-bit identifier for the query.  The query will be placed in
46 an allocated buffer, a pointer to which will be stored in the variable
47 pointed to by
48 .IR buf ,
49 and the length of which will be stored in the variable pointed to by
50 .IR buflen .
51 It is the caller's responsibility to free this buffer using
52 .B ares_free_string
53 when it is no longer needed.
54 .SH RETURN VALUES
55 .B ares_expand_name
56 can return any of the following values:
57 .TP 15
58 .B ARES_SUCCESS
59 Construction of the DNS query succeeded.
60 .TP 15
61 .B ARES_EBADNAME
62 The query name
63 .I name
64 could not be encoded as a domain name, either because it contained a
65 zero-length label or because it contained a label of more than 63
66 characters.
67 .TP 15
68 .B ARES_ENOMEM
69 Memory was exhausted.
70 .SH SEE ALSO
71 .BR ares_expand_name (3),
72 .BR ares_free_string (3)
73 .SH AUTHOR
74 Greg Hudson, MIT Information Systems
75 .br
76 Copyright 1998, 2000 by the Massachusetts Institute of Technology.