diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-06-30 11:31:47 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-06-30 11:31:48 +0200 |
commit | ded603542a8af41dc0c45af883d52390683f63aa (patch) | |
tree | e2e714111376571790c1b71c881c77f99a3620e4 /resolv/res_data.c | |
parent | 6781d8e693eb9e1251875222db5c9885d7ebb596 (diff) | |
download | glibc-ded603542a8af41dc0c45af883d52390683f63aa.tar glibc-ded603542a8af41dc0c45af883d52390683f63aa.tar.gz glibc-ded603542a8af41dc0c45af883d52390683f63aa.tar.bz2 glibc-ded603542a8af41dc0c45af883d52390683f63aa.zip |
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.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/resolv/res_data.c b/resolv/res_data.c index d05389e134..b790b4b725 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) { /* |