aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/c-ares/include
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2023-11-16 12:09:30 +0300
committerthegeorg <thegeorg@yandex-team.com>2023-11-16 12:45:04 +0300
commit1230368525c69fd8f92bb3bbff1cbc049581e703 (patch)
tree55910c62ce19890f0ef32d08fb2ff91fab731430 /contrib/libs/c-ares/include
parentd0bed9523e6cdc3911fcf5ff782e0bcf15d1e393 (diff)
downloadydb-1230368525c69fd8f92bb3bbff1cbc049581e703.tar.gz
Fix reimport for contrib/libs/c-ares after rXXXXXX
Diffstat (limited to 'contrib/libs/c-ares/include')
-rw-r--r--contrib/libs/c-ares/include/ares.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/contrib/libs/c-ares/include/ares.h b/contrib/libs/c-ares/include/ares.h
index ffee1e753f..ac8a22f0a6 100644
--- a/contrib/libs/c-ares/include/ares.h
+++ b/contrib/libs/c-ares/include/ares.h
@@ -569,21 +569,18 @@ struct ares_srv_reply {
unsigned short priority;
unsigned short weight;
unsigned short port;
- int ttl;
};
struct ares_mx_reply {
struct ares_mx_reply *next;
char *host;
unsigned short priority;
- int ttl;
};
struct ares_txt_reply {
struct ares_txt_reply *next;
unsigned char *txt;
size_t length; /* length excludes null termination */
- int ttl;
};
/* NOTE: This structure is a superset of ares_txt_reply
@@ -595,7 +592,6 @@ struct ares_txt_ext {
/* 1 - if start of new record
* 0 - if a chunk in the same record */
unsigned char record_start;
- int ttl;
};
struct ares_naptr_reply {
@@ -606,7 +602,6 @@ struct ares_naptr_reply {
char *replacement;
unsigned short order;
unsigned short preference;
- int ttl;
};
struct ares_soa_reply {
@@ -617,7 +612,6 @@ struct ares_soa_reply {
unsigned int retry;
unsigned int expire;
unsigned int minttl;
- int ttl;
};
struct ares_uri_reply {
@@ -696,8 +690,7 @@ CARES_EXTERN int ares_parse_ptr_reply(const unsigned char *abuf,
const void *addr,
int addrlen,
int family,
- struct hostent **host,
- int *hostttl);
+ struct hostent **host);
CARES_EXTERN int ares_parse_ns_reply(const unsigned char *abuf,
int alen,