summaryrefslogtreecommitdiff
path: root/ares_parse_aaaa_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_aaaa_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_aaaa_reply.3')
-rw-r--r--ares_parse_aaaa_reply.36
1 files changed, 3 insertions, 3 deletions
diff --git a/ares_parse_aaaa_reply.3 b/ares_parse_aaaa_reply.3
index f25cb93..0f77c03 100644
--- a/ares_parse_aaaa_reply.3
+++ b/ares_parse_aaaa_reply.3
@@ -23,7 +23,7 @@ ares_parse_aaaa_reply \- Parse a reply to a DNS query of type AAAA
.PP
.B int ares_parse_aaaa_reply(const unsigned char *\fIabuf\fP, int \fIalen\fP,
.B struct hostent **\fIhost\fP,
-.B struct addr6ttl *\fIaddrttls\fB, int *\fInaddrttls\fB);
+.B struct ares_addr6ttl *\fIaddrttls\fB, int *\fInaddrttls\fB);
.fi
.SH DESCRIPTION
The
@@ -31,7 +31,7 @@ The
function parses the response to a query of type AAAA into a
.BR "struct hostent"
and/or an array of
-.BR "struct addr6ttl" .
+.BR "struct ares_addr6ttl" .
The parameters
.I abuf
and
@@ -51,7 +51,7 @@ and
.IR naddrttls
are both nonnull,
then up to *naddrttls
-.BR "struct addr6ttl"
+.BR "struct ares_addr6ttl"
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.