diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:55:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:56:57 +0200 |
commit | ea9878ec271c791880fcbbe519d70c42f8113750 (patch) | |
tree | a26723d85e45c86be9ff7199f954418d34e7ef65 /resolv/Versions | |
parent | 21a497cc58df2b9b02dc687b97f105335e7a1c50 (diff) | |
download | glibc-ea9878ec271c791880fcbbe519d70c42f8113750.zip glibc-ea9878ec271c791880fcbbe519d70c42f8113750.tar.gz glibc-ea9878ec271c791880fcbbe519d70c42f8113750.tar.bz2 |
resolv: Move res_query functions into libc
This switches to public symbols without __ prefixes, due to improved
namespace management in glibc.
The script was used with --no-new-version to move the symbols
__res_nquery, __res_nquerydomain, __res_nsearch, __res_query,
__res_querydomain, __res_search, res_query, res_querydomain,
res_search. The public symbols res_nquery, res_nquerydomain,
res_nsearch, res_ownok, res_query, res_querydomain, res_search
were added with make update-all-abi.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'resolv/Versions')
-rw-r--r-- | resolv/Versions | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/resolv/Versions b/resolv/Versions index e3dd38b..05679d4 100644 --- a/resolv/Versions +++ b/resolv/Versions @@ -18,6 +18,9 @@ libc { hstrerror; res_init; res_mkquery; + res_query; + res_querydomain; + res_search; } GLIBC_2.2 { __dn_expand; @@ -26,7 +29,13 @@ libc { __res_nclose; __res_ninit; __res_nmkquery; + __res_nquery; + __res_nquerydomain; + __res_nsearch; __res_nsend; + __res_query; + __res_querydomain; + __res_search; __res_state; _res_hconf; } @@ -69,8 +78,14 @@ libc { res_mailok; res_mkquery; res_nmkquery; + res_nquery; + res_nquerydomain; + res_nsearch; res_nsend; res_ownok; + res_query; + res_querydomain; + res_search; res_send; } GLIBC_PRIVATE { @@ -97,6 +112,8 @@ libc { __ns_name_unpack; __res_context_hostalias; __res_context_mkquery; + __res_context_query; + __res_context_search; __res_context_send; __res_get_nsaddr; __res_iclose; @@ -157,20 +174,11 @@ libresolv { res_gethostbyaddr; res_gethostbyname2; res_gethostbyname; - res_query; - res_querydomain; - res_search; res_send_setqhook; res_send_setrhook; } GLIBC_2.2 { __res_hostalias; - __res_nquery; - __res_nquerydomain; - __res_nsearch; - __res_query; - __res_querydomain; - __res_search; } GLIBC_2.3.2 { __p_rcode; @@ -201,8 +209,6 @@ libresolv { GLIBC_PRIVATE { __ns_get16; __ns_get32; - __res_context_query; - __res_context_search; } } |