diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-28 12:10:45 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-28 12:24:00 +0300 |
commit | 4047efcfd40dcd860e9030a4c40a495aae320d7c (patch) | |
tree | 62d3b7617e288540e583ae87ff52aed3679338d9 /contrib/libs/c-ares/src/lib/ares_private.h | |
parent | 1f35e9c580f0bbe2c2018259a0f54fb6496b5fa6 (diff) | |
download | ydb-4047efcfd40dcd860e9030a4c40a495aae320d7c.tar.gz |
Update contrib/libs/c-ares to 1.33.1
989fe7a8375f82c54730928e4590985850c9a72a
Diffstat (limited to 'contrib/libs/c-ares/src/lib/ares_private.h')
-rw-r--r-- | contrib/libs/c-ares/src/lib/ares_private.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/contrib/libs/c-ares/src/lib/ares_private.h b/contrib/libs/c-ares/src/lib/ares_private.h index b85ecb5e14..263c2a606d 100644 --- a/contrib/libs/c-ares/src/lib/ares_private.h +++ b/contrib/libs/c-ares/src/lib/ares_private.h @@ -462,10 +462,14 @@ ares_bool_t ares__timedout(const ares_timeval_t *now, /* Returns one of the normal ares status codes like ARES_SUCCESS */ ares_status_t ares__send_query(ares_query_t *query, const ares_timeval_t *now); -ares_status_t ares__requeue_query(ares_query_t *query, - const ares_timeval_t *now, - ares_status_t status, - ares_bool_t inc_try_count); +ares_status_t ares__requeue_query(ares_query_t *query, + const ares_timeval_t *now, + ares_status_t status, + ares_bool_t inc_try_count, + const ares_dns_record_t *dnsrec); + +/*! Count the number of labels (dots+1) in a domain */ +size_t ares__name_label_cnt(const char *name); /*! Retrieve a list of names to use for searching. The first successful * query in the list wins. This function also uses the HOSTSALIASES file |