aboutsummaryrefslogtreecommitdiff
path: root/ares/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
commit35d4c57051574b33fd9b120932b385be35bd1f65 (patch)
tree40d87b1beee5f95daecd7ec58d0863b69878c1bf /ares/ares_parse_aaaa_reply.3
parentf6114f2ec4fcfe966cb4b30303aaa06666165798 (diff)
- 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/ares_parse_aaaa_reply.3')
-rw-r--r--ares/ares_parse_aaaa_reply.36
1 files changed, 3 insertions, 3 deletions
diff --git a/ares/ares_parse_aaaa_reply.3 b/ares/ares_parse_aaaa_reply.3
index f25cb9372..0f77c0323 100644
--- a/ares/ares_parse_aaaa_reply.3
+++ b/ares/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.