diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-09-21 16:30:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-09-21 16:30:27 +0200 |
commit | 6815a33d53164e7f1a3b87cec905c17c7a14a007 (patch) | |
tree | 36746b90972604ea29e28a698e8bd1dbc6dedea4 /resolv/res_data.c | |
parent | cbb47fa1c6476af73f393a81cd62fc926e1b8f6e (diff) | |
download | glibc-6815a33d53164e7f1a3b87cec905c17c7a14a007.tar.gz glibc-6815a33d53164e7f1a3b87cec905c17c7a14a007.tar.xz glibc-6815a33d53164e7f1a3b87cec905c17c7a14a007.zip |
resolv: Remove unsupported hook functions from the API [BZ #20016]
Diffstat (limited to 'resolv/res_data.c')
-rw-r--r-- | resolv/res_data.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/resolv/res_data.c b/resolv/res_data.c index f44c517062..569ff4c0ea 100644 --- a/resolv/res_data.c +++ b/resolv/res_data.c @@ -104,16 +104,6 @@ res_query(const char *name, /* domain name */ return (res_nquery(&_res, name, class, type, answer, anslen)); } -void -res_send_setqhook(res_send_qhook hook) { - _res.qhook = hook; -} - -void -res_send_setrhook(res_send_rhook hook) { - _res.rhook = hook; -} - int res_isourserver(const struct sockaddr_in *inp) { return (res_ourserver_p(&_res, (const struct sockaddr_in6 *) inp)); |