mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 19:40:06 +00:00
cd4c174b68
* include/rpc/svc.h: Use libc_hidden_proto for xprt_register, xprt_unregister. * sunrpc/svc.c: Add libc_hidden_def. * include/rpc/pmap_clnt.h: Use libc_hidden_proto for pmap_getport, pmap_set, pmap_unset. * sunrpc/pmap_clnt.c: Add libc_hidden_def. * sunrpc/pm_getport.c: Likewise. * include/rpc/auth_des.h: Use libc_hidden_proto for getpublickey. * sunrpc/publickey.c: Add libc_hidden_def.
30 lines
859 B
C
30 lines
859 B
C
#ifndef _RPC_AUTH_DES_H
|
|
|
|
#include <sunrpc/rpc/auth_des.h>
|
|
|
|
libc_hidden_proto (getpublickey)
|
|
|
|
extern bool_t xdr_authdes_cred (XDR *xdrs, struct authdes_cred *cred);
|
|
extern bool_t xdr_authdes_verf (register XDR *xdrs,
|
|
register struct authdes_verf *verf);
|
|
struct svc_req;
|
|
struct rpc_msg;
|
|
extern enum auth_stat _svcauth_des (register struct svc_req *rqst,
|
|
register struct rpc_msg *msg);
|
|
|
|
|
|
#define DECLARE_NSS_PROTOTYPES(service) \
|
|
extern enum nss_status _nss_ ## service ## _getpublickey \
|
|
(const char *netname, char *pkey, int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _getsecretkey \
|
|
(const char *netname, char *skey, char *passwd, \
|
|
int *errnop);
|
|
|
|
DECLARE_NSS_PROTOTYPES (files)
|
|
DECLARE_NSS_PROTOTYPES (nis)
|
|
DECLARE_NSS_PROTOTYPES (nisplus)
|
|
|
|
#undef DECLARE_NSS_PROTOTYPES
|
|
|
|
#endif
|