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;
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;
Top | Security APIs | APIs by category |