mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
e4aced47ae
* posix/bsd-getpgrp.c: Add prototype to avoid warning. * sunrpc/svc_unix.c: Include <rpc/svc.h> for prototypes. * sunrpc/create_xid.c: Include <rpc/svc.h> for prototypes. * include/rpc/rpc_msg.h: Add prototypes for some functions. * include/rpc/auth.h: Likewise. * include/rpc/auth_des.h: Likewise. * include/rpc/clnt.h: Likewise. * include/rpc/rpc.h: Likewise. * include/rpc/svc.h: Likewise. * include/rpc/svc_auth.h: Likewise. * include/rpc/des_crypt.h: New file.
28 lines
825 B
C
28 lines
825 B
C
#ifndef _RPC_AUTH_DES_H
|
|
|
|
#include <sunrpc/rpc/auth_des.h>
|
|
|
|
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
|