gfal_get_ids(3) - Linux man page
Name
gfal_get_ids - Extracts the SRM file/request ids from the 'gfal_internal'object
Synopsis
int gfal_get_ids (gfal_internal gfal, int *srm_reqid, int **srm_fileids, char **srmv2_reqtoken);
int gfal_get_ids_setype (gfal_internal gfal, enum se_type *setype, int *srm_reqid, int **srm_fileids, char **srmv2_reqtoken);
Description
gfal_get_ids Extracts the SRM file/request ids of the last called GFAL function from the gfal_internal object.As it will return only a copy of different ids, you have to manually free variables srm_fileids and srmv2_reqtoken if the corresponding value is not NULL
- gfal
- gfal_internal object generated from user parameters.
- setype
- The SE type which has been used to get the TURL. Possible values are: TYPE_SRM, TYPE_SRMv2, TYPE_SE.
- srm_reqid
- The request id returned by a SRMv1 SE.
- srm_fileids
- The table of file ids returned by a SRMv1 SE.
- srmv2_reqtoken
- The request token returned by a SRMv2 SE.