VMS Help  —  TCPIP Services, Programming Interfaces, RPC Server Routines, svc_sendreply
    Sends the results of a remote procedure call to an RPC client.
    Format
      #include  <rpc/rpc.h>
      bool_t  svc_sendreply(SVCXPRT *xprt, xdrproc_t outproc, char
              *out);

1  –  Arguments

 xprt
    A pointer to an RPC server handle created by any of the server-
    handle creation routines.
 outproc
    The XDR routine used to encode the server procedure's results.
 out
    A pointer to the server procedure's results.

2  –  Description

    Called by an ONC RPC service's dispatch routine to send the
    results of a remote procedure call.

3  –  Return Values

    TRUE               Indicates success.
    FALSE              Indicates failure.
Close Help