Log the given access allowed or denied message to the OpenSSO Enterprise logs.
#include "am_web.h"
AM_WEB_EXPORT boolean_t
am_web_log_auth(am_web_access_t access_type,
const char *fmt, ...
void* agent_config);
This function takes the following parameters:
One of the following values of the am_web_access_t enumeration as defined:
#include "am_web.h"
typedef enum {
AM_ACCESS_DENY = 0,
AM_ACCESS_ALLOW
} am_web_access_t;
Pointer to a formatted string message as in printf.
An agent configuration instance returned by am_web_get_agent_configuration(). This parameter should not be NULL.
This function returns one of the following values of the boolean_t enumeration (defined in the <am_types.h> header file):
If the call was successful.
Otherwise.