mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
ae7a94e5e3
this means that *always* libnsl is only built as shared library for backward compatibility and the NSS modules libnss_nis and libnss_nisplus are not built at all, libnsl's headers aren't installed. This compatibility is kept only for architectures and ABIs that have been added in or before version 2.28. Replacement implementations based on TIRPC, which additionally support IPv6, are available from <https://github.com/thkukuk/>. This change does not affect libnss_compat which does not depended on libnsl since 2.27 and thus can be used without NIS. libnsl code depends on Sun RPC, e.g. on --enable-obsolete-rpc (installed libnsl headers use installed Sun RPC headers), which will be removed in the following commit.
37 lines
1001 B
C
37 lines
1001 B
C
#ifndef _RPC_AUTH_H
|
|
#include <sunrpc/rpc/auth.h>
|
|
|
|
# ifndef _ISOMAC
|
|
|
|
libc_hidden_proto (getnetname)
|
|
libc_hidden_proto (netname2user)
|
|
libc_hidden_proto (host2netname)
|
|
libc_hidden_proto (user2netname)
|
|
libc_hidden_proto (key_gendes)
|
|
|
|
/* Now define the internal interfaces. */
|
|
struct key_netstarg;
|
|
extern int key_setnet (struct key_netstarg *arg);
|
|
|
|
libc_hidden_proto (key_encryptsession_pk)
|
|
libc_hidden_proto (key_decryptsession_pk)
|
|
|
|
libc_hidden_proto (_null_auth)
|
|
libc_hidden_proto (authnone_create)
|
|
libc_hidden_proto (authunix_create)
|
|
libc_hidden_proto (authunix_create_default)
|
|
libc_hidden_proto (xdr_des_block)
|
|
libc_hidden_proto (xdr_opaque_auth)
|
|
libc_hidden_proto (authdes_create)
|
|
libc_hidden_proto (authdes_pk_create)
|
|
libc_hidden_proto (key_decryptsession)
|
|
libc_hidden_proto (key_encryptsession)
|
|
libc_hidden_proto (key_get_conv)
|
|
libc_hidden_proto (key_secretkey_is_set)
|
|
libc_hidden_proto (key_setnet)
|
|
libc_hidden_proto (key_setsecret)
|
|
libc_hidden_proto (netname2host)
|
|
|
|
# endif /* !_ISOMAC */
|
|
#endif
|