sasl_auxprop_add_plugin - add a SASL auxiliary property plugin¶
Synopsis¶
#include <sasl/saslplug.h>
int sasl_auxprop_add_plugin(const char *plugname,
                sasl_auxprop_plug_init_t *cplugfunc);
Description¶
- 
int sasl_auxprop_add_plugin(const char *plugname,
- 
sasl_auxprop_plug_init_t *cplugfunc);
- sasl_auxprop_add_plugin adds an auxiliary property plugin to the current list of auxiliary property plugins in the SASL library. - Parameters: - plugname – is the name of the auxiliary property plugin.
- cplugfunc – is filled in by the sasl_auxprop_plug_init_t structure.
 - Returns: - Returns - SASL_OKon success. See sasl_errors(3) for meanings of other return codes.
Return Value¶
SASL functions should return SASL return codes.
See sasl.h for a complete list. SASL_OK indicates success.
The following return codes indicate errors and should be handled:
- SASL_BADVERS: Version mismatch with plugin.
- SASL_NOMEM: Not enough memory to complete operation
