aboutsummaryrefslogtreecommitdiff
path: root/resolv/res_data.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-06-30 11:31:47 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-06-30 11:31:48 +0200
commitded603542a8af41dc0c45af883d52390683f63aa (patch)
treee2e714111376571790c1b71c881c77f99a3620e4 /resolv/res_data.c
parent6781d8e693eb9e1251875222db5c9885d7ebb596 (diff)
downloadglibc-ded603542a8af41dc0c45af883d52390683f63aa.zip
glibc-ded603542a8af41dc0c45af883d52390683f63aa.tar.gz
glibc-ded603542a8af41dc0c45af883d52390683f63aa.tar.bz2
resolv: Move res_isourserver, res_send from res_data.c to res_send.c
Diffstat (limited to 'resolv/res_data.c')
-rw-r--r--resolv/res_data.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/resolv/res_data.c b/resolv/res_data.c
index d05389e..b790b4b 100644
--- a/resolv/res_data.c
+++ b/resolv/res_data.c
@@ -45,22 +45,6 @@ res_query(const char *name, /* domain name */
return (res_nquery(&_res, name, class, type, answer, anslen));
}
-int
-res_isourserver(const struct sockaddr_in *inp) {
- return (res_ourserver_p(&_res, (const struct sockaddr_in6 *) inp));
-}
-
-int
-res_send(const u_char *buf, int buflen, u_char *ans, int anssiz) {
- if (__res_maybe_init (&_res, 1) == -1) {
- /* errno should have been set by res_init() in this case. */
- return (-1);
- }
-
- return (res_nsend(&_res, buf, buflen, ans, anssiz));
-}
-
-
void
res_close(void) {
/*