ictxParseInfo--Authentication Context Parse Info Parameter

This is information that is parsed from the authentication context. See eServer Implementation Notes for details on platform-specific details.

The layout for ictxParseInfo follows:

typedef struct ictxParseInfo
{
    enum ictxParseInfoFormat format;
    int  statusFlag;
    union
    {
        ictxParseInfoFormat0_t * format0;
    } parseInfo;

} ictxParseInfo_t;


Field Descriptions

format  
Valid values for the format are:
enum ictxParseInfoFormat  {
    ICTX_PARSE_INFO_FORMAT_0
};

When format is ICTX_PARSE_INFO_FORMAT_0 (0), the parseInfo field will contain an ictxParseInfoFormat0_t structure.

typedef struct ictxParseInfoFormat0
{
    ictxAuthenticationInfo_t * authData; /* Authentication data retrieved
                                    from the authentication context  */
   ictxManifestInfo_t  ** manifestList;  /* Array of pointers to manifest
                                     information.                      */
} ictxParseInfoFormat0_t;
authData  
The authentication data found in the authentication context. For the format of the structure, see ictxAuthenticationInfo--Authentication Context Authentication Info.

manifestList  
An array of pointers to manifest information. For the format of the manifest information structure, see ictxManifestInfo--Authentication Context Manifest Information.

statusFlag  
The indicator as to whether or not the parse information is complete. The possible values are:


eServer Implementation Notes

  1. AIX implementation details:
  2. Linux implementation details:
  3. i5/OS implementation details:
  4. Windows implementation details:
  5. z/OS implementation notes:

Top | Security APIs | APIs by category