| SASL_VERIFYFILE_T(3SASL) | Simple Authentication Security Layer Library Functions | SASL_VERIFYFILE_T(3SASL) |
sasl_verifyfile_t - the SASL file verification callback function
cc [ flag ... ] file ... -lsasl [ library ... ]
#include <sasl/sasl.h>
typedef enum {
SASL_VRFY_PLUGIN, /* a DLL/shared library plugin */
SASL_VRFY_CONF, /* a configuration file */
SASL_VRFY_PASSWD, /* a password storage file */
SASL_VRFY_OTHER /* some other file type */
} sasl_verify_tyep_t
int sasl_verifyfile_t(void *context, const char *file,
sasl_verifyfile_t type);
Use the sasl_verifyfile_t() callback function check whether a given file can be used by the SASL library. Applications use sasl_verifyfile_t() to check the environment to ensure that plugins or configuration files cannot be written to.
context
file
type
Like other SASL callback functions, sasl_verifyfile_t() returns an integer that corresponds to a SASL error code. See <sasl.h> for a complete list of SASL error codes.
SASL_OK
See sasl_errors(3SASL) for information on SASL error codes.
See attributes(7) for descriptions of the following attributes:
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
| Interface Stability | Evolving |
| MT-Level | MT-Safe |
| October 27, 2003 | OmniOS |