The svcerr_progvers() call sends the low version number and high version number of RPC service when the version numbers of two RPC programs do not match.
Syntax
#include <rpc\rpc.h> void svcerr_progvers(xprt, low_vers, high_vers) SVCXPRT *xprt; u_long low_vers; u_long high_vers;
Parameters
xprt
Description
A service dispatch routine calls the svcerr_progvers() call when the version numbers of two RPC programs do not match. The call sends the supported low version and high version of RPC service.
Related Calls