 |
Index for Section 3 |
|
 |
Alphabetical listing for C |
|
 |
Bottom of page |
|
cs_oid_dup(3)
NAME
cs_oid_dup - duplicate an object identifier (OID)
SYNOPSIS
#include <gssapi/gssapi.h>
cs_oid_t cs_oid_dup(
const cs_oid_t a0id );
PARAMETERS
aOid The OID to be duplicated.
DESCRIPTION
The cs_oid_dup() function duplicates an OID and returns the copy of the
original OID. Resources associated with the returned OID must be released
by the application after use with a call to cs_oid_free().
A NULL value may be passed as the OID to be duplicated. In this case, an
empty OID is allocated and returned.
RETURN VALUES
The function returns the OID created by the duplication process. The
function returns NULL if there is a memory allocation error.
PORTABILITY CONSIDERATIONS
This function is an extension of the GSS-API standard that is not supported
by other GSS-API implementations.
SEE ALSO
Functions: cs_oid_set_dup(3), cs_oid_free(3)
 |
Index for Section 3 |
|
 |
Alphabetical listing for C |
|
 |
Top of page |
|