All of the functions in the API that return status return it in a globus_result_t structure.
#define GLOBUS_RLS_SUCCESS 0
#define GLOBUS_RLS_GLOBUSERR 1
#define GLOBUS_RLS_INVHANDLE 2
#define GLOBUS_RLS_BADURL 3
#define GLOBUS_RLS_NOMEMORY 4
#define GLOBUS_RLS_OVERFLOW 5
#define GLOBUS_RLS_BADARG 6
#define GLOBUS_RLS_PERM 7
#define GLOBUS_RLS_BADMETHOD 8
#define GLOBUS_RLS_INVSERVER 9
#define GLOBUS_RLS_MAPPING_NEXIST 10
#define GLOBUS_RLS_LFN_EXIST 11
#define GLOBUS_RLS_LFN_NEXIST 12
#define GLOBUS_RLS_PFN_EXIST 13
#define GLOBUS_RLS_PFN_NEXIST 14
#define GLOBUS_RLS_LRC_EXIST 15
#define GLOBUS_RLS_LRC_NEXIST 16
#define GLOBUS_RLS_DBERROR 17
#define GLOBUS_RLS_RLI_EXIST 18
#define GLOBUS_RLS_RLI_NEXIST 19
#define GLOBUS_RLS_MAPPING_EXIST 20
#define GLOBUS_RLS_INV_ATTR_TYPE 21
#define GLOBUS_RLS_ATTR_EXIST 22
#define GLOBUS_RLS_ATTR_NEXIST 23
#define GLOBUS_RLS_INV_OBJ_TYPE 24
#define GLOBUS_RLS_INV_ATTR_OP 25
#define GLOBUS_RLS_UNSUPPORTED 26
#define GLOBUS_RLS_TIMEOUT 27
#define GLOBUS_RLS_TOO_MANY_CONNECTIONS 28
#define GLOBUS_RLS_ATTR_VALUE_NEXIST 29
#define GLOBUS_RLS_ATTR_INUSE 30
All of the functions in the API that return status return it in a globus_result_t structure.
Prior to version 2.0.0 an integer status was returned. The globus_result_t structure includes an integer 'type' which is set to one of the status codes defined below (the same values that were returned by earlier versions of the API). The function globus_rls_client_error_info() may be used to extract the status code and/or error message from a globus_result_t. GLOBUS_SUCCESS is returned when the operation was successful.
An error was returned by the Globus I/O module.
The globus_rls_handle_t handle is invalid.
A result was too large to fit in buffer.
Bad argument (eg NULL where string pointer expected).
Client does not have permission for requested action.
RPC error, invalid method name sent to server.
LRC request made to RLI server or vice versa.
LFN,PFN (LRC) or LFN,LRC (RLI) mapping doesn't exist.
LFN already exists in LRC or RLI database.
LFN doesn't exist in LRC or RLI database.
PFN already exists in LRC database.
PFN doesn't exist in LRC database.
LRC already exists in LRC or RLI database.
LRC doesn't exist in RLI database.
RLI already exists in LRC database.
LFN,PFN (LRC) or LFN,LRC (RLI) mapping already exists.
Invalid attribute type, see globus_rls_attr_type_t.
Invalid object type, see globus_rls_obj_type_t.
Invalid attribute search operator, see globus_rls_attr_op_t.
Attribute with specified value not found.
Attribute in use by some object, can't be deleted.
Generated automatically by Doxygen for globus rls client from the source code.