sasl_client_add_plugin - add a SASL client plugin¶
Synopsis¶
#include <sasl/saslplug.h>
int sasl_client_add_plugin(const char *plugname,
                sasl_client_plug_init_t *cplugfunc);
Description¶
- 
int sasl_client_add_plugin(const char *plugname,
- 
sasl_client_plug_init_t *cplugfunc);
- sasl_client_add_plugin adds a client plugin to the current in-memory list of client plugins in the SASL library. - Parameters: - plugname – is the name of the client plugin.
- cplugfunc – is filled in by the sasl_client_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
