rpc_binding_inq_object(3) — Subroutines
NAME
rpc_binding_inq_object - Returns the object UUID from a binding handle
Used by client or server applications.
SYNOPSIS
#include <dce/rpc.h>
void rpc_binding_inq_object(
rpc_binding_handle_t binding ,
uuid_t ∗object_uuid ,
unsigned32 ∗status );
PARAMETERS
Input
bindingSpecifies a client or server binding handle.
Output
object_uuidReturns the object UUID found in the binding argument. The object UUID is a unique identifier for an object for which a remote procedure call can be made.
statusReturns the status code from this routine. This status code indicates whether the routine completed successfully or, if not, why not. The possible status codes and their meanings are as follows:
rpc_s_okSuccess.
rpc_s_invalid_binding
Invalid binding handle.
DESCRIPTION
The rpc_binding_inq_object routine obtains the object UUID associated with a client or server binding handle. If no object UUID has been associated with the binding handle, this routine returns a nil UUID.
RETURN VALUES
None.
RELATED INFORMATION
Functions: rpc_binding_set_object(3)