rpc_binding_vector_free(3rpc)Frees the memory used to store a vector and binding handles Used by client or server applications. Synopsis #include <dce/rpc.h> void rpc_binding_vector_free( rpc_binding_vector_t **binding_vector, unsigned32 *status); Parameters Input/Output
binding_vector Output
status
Description A server obtains a vector of binding handles by calling rpc_server_inq_bindings( ). A client obtains a vector of binding handles by calling rpc_ns_binding_lookup_next( ). Call rpc_binding_vector_free( ) if you have used either of these routines. The rpc_binding_free( ) routine frees individual elements of the vector. If an element is freed with this routine, the NULL element entry replaces it; rpc_binding_vector_free( ) ignores such an entry.
Return Values Errors The following describes a partial list of errors that might be returned. Refer to the OSF DCE Problem Determination Guide for complete descriptions of all error messages.
rpc_s_ok
rpc_s_invalid_arg
rpc_s_invalid_binding
rpc_s_wrong_kind_of_binding
Related Information rpc_ns_binding_lookup_next(3rpc)
|