32 lines
529 B
C
32 lines
529 B
C
|
/*
|
||
|
* This is sample code generated by rpcgen.
|
||
|
* These are only templates and you can use them
|
||
|
* as a guideline for developing your own functions.
|
||
|
*/
|
||
|
|
||
|
#include "square.h"
|
||
|
|
||
|
bool_t
|
||
|
squareproc_2_svc(square_in *argp, square_out *result, struct svc_req *rqstp)
|
||
|
{
|
||
|
bool_t retval;
|
||
|
|
||
|
/*
|
||
|
* insert server code here
|
||
|
*/
|
||
|
|
||
|
return retval;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
square_prog_2_freeresult (SVCXPRT *transp, xdrproc_t xdr_result, caddr_t result)
|
||
|
{
|
||
|
xdr_free (xdr_result, result);
|
||
|
|
||
|
/*
|
||
|
* Insert additional freeing code here, if needed
|
||
|
*/
|
||
|
|
||
|
return 1;
|
||
|
}
|