RPC_SVC_REG(3) | Library Functions Manual | RPC_SVC_REG(3) |
rpc_svc_reg
,
rpc_reg
, svc_reg
,
svc_unreg
, svc_auth_reg
,
xprt_register
,
xprt_unregister
— library
routines for registering servers
#include
<rpc/rpc.h>
int
rpc_reg
(rpcprog_t
prognum, rpcvers_t
versnum, rpcproc_t
procnum, char
*(*procname)(), xdrproc_t
inproc, xdrproc_t
outproc, char
*nettype);
bool_t
svc_reg
(SVCXPRT
*xprt, const rpcprog_t
prognum, const rpcvers_t
versnum, void
(*dispatch)(struct svc_req *, SVCXPRT *),
const struct netconfig
*netconf);
void
svc_unreg
(const
rpcprog_t prognum, const
rpcvers_t versnum);
int
svc_auth_reg
(int
cred_flavor, enum
auth_stat (*handler)(struct svc_req *, struct rpc_msg *));
void
xprt_register
(SVCXPRT
*xprt);
void
xprt_unregister
(SVCXPRT
*xprt);
These routines are a part of the RPC library which allows the RPC servers to register themselves with rpcbind (see rpcbind(8)), and associate the given program and version number with the dispatch function. When the RPC server receives a RPC request, the library invokes the dispatch routine with the appropriate arguments.
See rpc(3) for the definition of the SVCXPRT data structure.
rpc_reg
()svc_reg
()NULL
, the service
is not registered with the rpcbind(8) service. If
netconf is non-zero, then a mapping of the triple
[prognum, versnum,
netconf->nc_netid] to
xprt->xp_ltaddr is established with the local
rpcbind service.
The
svc_reg
()
routine returns 1 if it succeeds, and 0 otherwise.
svc_unreg
()svc_auth_reg
()Typical service application would call
svc_auth_reg
()
after registering the service and prior to calling
svc_run
().
When needed to process an RPC credential of type
cred_flavor, the handler
procedure will be called with two arguments, struct
svc_req *rqst and struct rpc_msg *msg, and
is expected to return a valid enum auth_stat
value. There is no provision to change or delete an authentication
handler once registered.
The
svc_auth_reg
()
routine returns 0 if the registration is successful, 1 if
cred_flavor already has an authentication handler
registered for it, and -1 otherwise.
xprt_register
()xprt_unregister
()These functions are part of libtirpc.
select(2), rpc(3), rpcbind(3), rpc_svc_calls(3), rpc_svc_create(3), rpc_svc_err(3), rpcbind(8)
May 3, 1993 | Debian |