Serializes and deserializes the RPC reply header and then calls the appropriate routine to interpret the rest of the message. Format #include <tcpip$rpcxdr.h> bool_t xdr_replymsg(XDR *xdrs, struct rpc_msg *rmsgp);
1 – Arguments
xdrs A pointer to an XDR stream handle created by one of the XDR stream-handle creation routines. rmsgp A pointer to the rpc_msg structure describing the reply message.
2 – Description
Describes ONC RPC reply messages. This routine is useful for users who want to generate messages without using the ONC RPC package. This routine interprets the message header and then calls either the xdr_accepted_reply or the xdr_rejected_reply routine to interpret the body of the RPC message.
3 – Return Values
TRUE Indicates success. FALSE Indicates failure.