summaryrefslogtreecommitdiff
path: root/ares_parse_a_reply.3
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-11-23 01:24:17 +0000
committerYang Tse <yangsita@gmail.com>2009-11-23 01:24:17 +0000
commit36b26039acc147b9b6839b12049707b531b62e32 (patch)
tree03e409cf430ee17291ee4ce01b763dfbf5a49392 /ares_parse_a_reply.3
parent497afa9acb4d42b4bb186701f0d03a02884ff9b2 (diff)
downloadc-ares-36b26039acc147b9b6839b12049707b531b62e32.tar.gz
c-ares-36b26039acc147b9b6839b12049707b531b62e32.tar.bz2
c-ares-36b26039acc147b9b6839b12049707b531b62e32.zip
- Jakub Hrozek renamed addrttl and addr6ttl structs to ares_addrttl and
ares_addr6ttl in order to prevent name space pollution, along with necessary changes to code base and man pages.This change does not break ABI, there is no need to recompile existing applications. But existing applications using these structs with the old name will need source code adjustments when recompiled using c-ares 1.6.1.
Diffstat (limited to 'ares_parse_a_reply.3')
-rw-r--r--ares_parse_a_reply.36
1 files changed, 3 insertions, 3 deletions
diff --git a/ares_parse_a_reply.3 b/ares_parse_a_reply.3
index 10c0650..f7debb9 100644
--- a/ares_parse_a_reply.3
+++ b/ares_parse_a_reply.3
@@ -23,7 +23,7 @@ ares_parse_a_reply \- Parse a reply to a DNS query of type A
.PP
.B int ares_parse_a_reply(const unsigned char *\fIabuf\fP, int \fIalen\fP,
.B struct hostent **\fIhost\fP,
-.B struct addrttl *\fIaddrttls\fB, int *\fInaddrttls\fB);
+.B struct ares_addrttl *\fIaddrttls\fB, int *\fInaddrttls\fB);
.fi
.SH DESCRIPTION
The
@@ -31,7 +31,7 @@ The
function parses the response to a query of type A into a
.BR "struct hostent"
and/or an array of
-.BR "struct addrttls" .
+.BR "struct ares_addrttls" .
The parameters
.I abuf
and
@@ -51,7 +51,7 @@ and
.IR naddrttls
are both nonnull,
then up to *naddrttls
-.BR "struct addrttl"
+.BR "struct ares_addrttl"
records are stored in the array pointed to by addrttls,
and then *naddrttls is set to the number of records so stored.
Note that the memory for these records is supplied by the caller.