RPC_SVC_ERR(3) | Library Functions Manual | RPC_SVC_ERR(3) |
rpc_svc_err
,
svcerr_auth
, svcerr_decode
,
svcerr_noproc
,
svcerr_noprog
,
svcerr_progvers
,
svcerr_systemerr
,
svcerr_weakauth
— library
routines for server side remote procedure call errors
#include
<rpc/rpc.h>
void
svcerr_auth
(SVCXPRT
*xprt, enum auth_stat
why);
void
svcerr_decode
(SVCXPRT
*xprt);
void
svcerr_noproc
(SVCXPRT
*xprt);
void
svcerr_noprog
(SVCXPRT
*xprt);
void
svcerr_progvers
(SVCXPRT
*xprt, rpcvers_t
low_vers, rpcvers_t
high_vers);
void
svcerr_systemerr
(SVCXPRT
*xprt);
void
svcerr_weakauth
(SVCXPRT
*xprt);
These routines are part of the RPC library which allows C language programs to make procedure calls on other machines across the network.
These routines can be called by the server side dispatch function if there is any error in the transaction with the client.
See rpc(3) for the definition of the SVCXPRT data structure.
svcerr_auth
()svcerr_decode
()svc_getargs
()
in rpc_svc_reg(3)).svcerr_noproc
()svcerr_noprog
()svcerr_progvers
()svcerr_systemerr
()svcerr_weakauth
()svcerr_auth
(xprt,
AUTH_TOOWEAK).These functions are part of libtirpc.
May 3, 1993 | Debian |