Indicates that the service dispatch routine cannot complete a remote procedure call because the requested program is not registered.
#include <rpc/rpc.h>
void svcerr_noprog (xprt) SVCXPRT *xprt;
The svcerr_noprog subroutine is called by a service dispatch routine when the requested program is not registered with the Remote Procedure Call (RPC) package. This subroutine sets the status of the RPC reply message to the PROG_UNAVAIL condition, which indicates that the remote server has not exported the program.
Note: Service implementors do not usually need this subroutine.
xprt | Points to the RPC service transport handle. |
This subroutine is part of Base Operating System (BOS) Runtime.
List of RPC Programming References.
Remote Procedure Call (RPC) Overview for Programming in AIX Version 4.3 Communications Programming Concepts.