From: Rich Felker Date: Sat, 8 Sep 2018 00:03:32 +0000 (-0400) Subject: move __res_msend_rc declaration to lookup.h X-Git-Tag: v1.1.21~146 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=432f9f0e315a7df8e0c5dc820f0f77279b908bb1;p=oweals%2Fmusl.git move __res_msend_rc declaration to lookup.h unlike the other res/dn functions, this one is tied to struct resolvconf which is not a public interface, so put it in the private header for its subsystem. --- diff --git a/src/network/lookup.h b/src/network/lookup.h index 329aaa77..4c01b618 100644 --- a/src/network/lookup.h +++ b/src/network/lookup.h @@ -35,6 +35,7 @@ int __lookup_name(struct address buf[static MAXADDRS], char canon[static 256], c int __lookup_ipliteral(struct address buf[static 1], const char *name, int family); int __get_resolv_conf(struct resolvconf *, char *, size_t); +int __res_msend_rc(int, const unsigned char *const *, const int *, unsigned char *const *, int *, int, const struct resolvconf *); int __dns_parse(const unsigned char *, int, int (*)(void *, int, const void *, int, const void *), void *); diff --git a/src/network/lookup_name.c b/src/network/lookup_name.c index 71c396a8..5a096ac0 100644 --- a/src/network/lookup_name.c +++ b/src/network/lookup_name.c @@ -100,7 +100,6 @@ struct dpc_ctx { int __dn_expand(const unsigned char *, const unsigned char *, const unsigned char *, char *, int); int __res_mkquery(int, const char *, int, int, const unsigned char *, int, const unsigned char*, unsigned char *, int); -int __res_msend_rc(int, const unsigned char *const *, const int *, unsigned char *const *, int *, int, const struct resolvconf *); #define RR_A 1 #define RR_CNAME 5