svcraw_create()

The svcraw_create() call creates a local RPC service transport handle to simulate RPC programs within one host.

Syntax

#include <rpc\rpc.h>

SVCXPRT *
svcraw_create()

Description

The svcraw_create() call creates a local RPC service transport used for timings, to which it returns a pointer. Because messages are passed using a buffer within the address space of the local process, the client process must also use the same address space. This allows the simulation of RPC programs within one host. See clntraw_create() for more information.

Return Values

NULL indicates failure.

Related Calls


[Back: svcerr_weakauth()]
[Next: svctcp_create()]