Grid Community Toolkit
6.2.1705709074 (tag: v6.2.20240202)
|
Error Construction. More...
Macros | |
#define | GLOBUS_ERROR_TYPE_GSSAPI |
Functions | |
globus_object_t * | globus_error_construct_gssapi_error (globus_module_descriptor_t *base_source, globus_object_t *base_cause, const OM_uint32 major_status, const OM_uint32 minor_status) |
Construct Error. More... | |
globus_object_t * | globus_error_initialize_gssapi_error (globus_object_t *error, globus_module_descriptor_t *base_source, globus_object_t *base_cause, const OM_uint32 major_status, const OM_uint32 minor_status) |
Initialize Error. More... | |
Error Construction.
Create and initialize a Globus GSSAPI Error object.
This section defines operations to create and initialize Globus GSSAPI Error objects.
#define GLOBUS_ERROR_TYPE_GSSAPI |
Error type definition
globus_object_t* globus_error_construct_gssapi_error | ( | globus_module_descriptor_t * | base_source, |
globus_object_t * | base_cause, | ||
const OM_uint32 | major_status, | ||
const OM_uint32 | minor_status | ||
) |
Construct Error.
Allocate and initialize an error of type GLOBUS_ERROR_TYPE_GSSAPI
base_source | Pointer to the originating module. |
base_cause | The error object causing the error. If this is the original error, this parameter may be NULL. |
major_status | The GSSAPI major status |
minor_status | The GSSAPI minor status |
globus_object_t* globus_error_initialize_gssapi_error | ( | globus_object_t * | error, |
globus_module_descriptor_t * | base_source, | ||
globus_object_t * | base_cause, | ||
const OM_uint32 | major_status, | ||
const OM_uint32 | minor_status | ||
) |
Initialize Error.
Initialize a previously allocated error of type GLOBUS_ERROR_TYPE_GSSAPI
error | The previously allocated error object. |
base_source | Pointer to the originating module. |
base_cause | The error object causing the error. If this is the original error this parameter may be NULL. |
major_status | The GSSAPI major status |
minor_status | The GSSAPI minor status |