svc_freeargs()

The svc_freeargs() call frees storage allocated to decode the arguments received by svc_getargs().

Syntax

#include <rpc\rpc.h>

bool_t
svc_freeargs(xprt, inproc, in)
SVCXPRT *xprt;
xdrproc_t inproc;
char *in;

Parameters

xprt

inproc in

Return Values

The value 1 indicates success; the value 0 indicates an error.

Related Calls


[Back: svc_destroy()]
[Next: svc_getargs()]