blob: b6340ac84649ff7da7545903e0c288c7a6cff69d [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -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_PARSE_NS_REPLY 3 "10 February 2007"
17.SH NAME
18ares_parse_ns_reply \- Parse a reply to a DNS query of type NS into a hostent
19.SH SYNOPSIS
20.nf
21.B #include <ares.h>
22.PP
23.B int ares_parse_ns_reply(const unsigned char *\fIabuf\fP, int \fIalen\fP,
24.B struct hostent **\fIhost\fP);
25.fi
26.SH DESCRIPTION
27The
28.B ares_parse_ns_reply
29function parses the response to a query of type NS into a
30.BR "struct hostent" .
31The parameters
32.I abuf
33and
34.I alen
35give the contents of the response. The result is stored in allocated
36memory and a pointer to it stored into the variable pointed to by
37.IR host .
38The nameservers are stored into the
39.BR aliases
40field of the
41.IR host
42structure.
43It is the caller's responsibility to free the resulting host structure
44using
45.BR ares_free_hostent (3)
46when it is no longer needed.
47.SH RETURN VALUES
48.B ares_parse_ns_reply
49can return any of the following values:
50.TP 15
51.B ARES_SUCCESS
52The response was successfully parsed.
53.TP 15
54.B ARES_EBADRESP
55The response was malformatted.
56.TP 15
57.B ARES_ENODATA
58The response did not contain an answer to the query.
59.TP 15
60.B ARES_ENOMEM
61Memory was exhausted.
62.SH SEE ALSO
63.BR ares_query (3),
64.BR ares_free_hostent (3)
65.SH AUTHOR
66Written by Vlad Dinulescu <vlad.dinulescu@avira.com>, on behalf of AVIRA Gmbh http://www.avira.com