ictxOptions--Identity Context Options Parameter

This is the options information that can be specified when storing an identity context or when building an authentication context. See eServer Implementation Notes for details on platform-specific details.

The layout for ictxOptions follows:

typedef struct ictxOptions
{
    enum ictxOptionsFormat format;
    union
    {
        ictxOptionsFormat0_t  format0;
    } options;
} ictxOptions_t;


Field Descriptions

format  
Valid values for the format are:
enum ictxOptionsFormat  {
    ictx_OPTIONS_FORMAT_0
    
};

When format is ictx_OPTIONS_FORMAT_0 (0), the options field must contain an ictxOptionsFormat0_t structure.

typedef struct ictxOptionsFormat0
{
    int    timeout;                 
    
} ictxOptionsFormat0_t;
timeout  
The number of seconds before the object times out. If -1 is specified, the default value of 3600 seconds is used. Otherwise, a value of 1 - 3600 seconds must be specified.


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