mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
resolv: Move res_send, res_nsend into libc
Switch to public symbols without __ prefix (due to improved namespace management). __res_send, __res_nsend were moved using the script (with --no-new-version). res_send@@GLIBC_2.34 and res_nsend@@GLIBC_2.34 were added using make update-all-abi. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@ -6,8 +6,10 @@ libc {
|
||||
__res_dnok;
|
||||
__res_hnok;
|
||||
__res_mailok;
|
||||
__res_nsend;
|
||||
__res_ownok;
|
||||
__res_randomid;
|
||||
__res_send;
|
||||
_res;
|
||||
dn_expand;
|
||||
h_errlist;
|
||||
@ -21,6 +23,7 @@ libc {
|
||||
__res_init;
|
||||
__res_nclose;
|
||||
__res_ninit;
|
||||
__res_nsend;
|
||||
__res_state;
|
||||
_res_hconf;
|
||||
}
|
||||
@ -61,7 +64,9 @@ libc {
|
||||
res_dnok;
|
||||
res_hnok;
|
||||
res_mailok;
|
||||
res_nsend;
|
||||
res_ownok;
|
||||
res_send;
|
||||
}
|
||||
GLIBC_PRIVATE {
|
||||
%if !PTHREAD_IN_LIBC
|
||||
@ -86,6 +91,7 @@ libc {
|
||||
__ns_name_uncompress;
|
||||
__ns_name_unpack;
|
||||
__res_context_hostalias;
|
||||
__res_context_send;
|
||||
__res_get_nsaddr;
|
||||
__res_iclose;
|
||||
__resolv_context_get;
|
||||
@ -126,7 +132,6 @@ libresolv {
|
||||
__res_isourserver;
|
||||
__res_nameinquery;
|
||||
__res_queriesmatch;
|
||||
__res_send;
|
||||
__sym_ntop;
|
||||
__sym_ntos;
|
||||
__sym_ston;
|
||||
@ -159,7 +164,6 @@ libresolv {
|
||||
__res_nquery;
|
||||
__res_nquerydomain;
|
||||
__res_nsearch;
|
||||
__res_nsend;
|
||||
__res_query;
|
||||
__res_querydomain;
|
||||
__res_search;
|
||||
|
Reference in New Issue
Block a user