rpc_protseq_vector_free(3) — Subroutines
NAME
rpc_protseq_vector_free - Frees the memory used by a vector and its protocol sequences
Used by client or server applications.
SYNOPSIS
#include <dce/rpc.h>
void rpc_protseq_vector_free(
rpc_protseq_vector_t ∗∗protseq_vector ,
unsigned32 ∗status );
PARAMETERS
Input/Output
protseq_vectorSpecifies the address of a pointer to a vector of protocol sequences. On return the pointer is set to NULL.
Output
statusReturns the status code from this routine. This status code indicates whether the routine completed successfully or, if not, why not. The possible status code and its meaning is as follows:
rpc_s_okSuccess.
DESCRIPTION
The rpc_protseq_vector_free routine frees the memory used to store a vector of protocol sequences. The freed memory includes both the protocol sequences and the vector itself.
Call routine rpc_network_inq_protseqs to obtain a vector of protocol sequences. Follow a call to routine rpc_network_inq_protseqs with a call to routine rpc_protseq_vector_free.
RETURN VALUES
None.
RELATED INFORMATION
Functions: rpc_network_inq_protseqs(3)