Go to main content

man pages section 3: Networking Library Functions

Exit Print View

Updated: July 2017
 
 

sasl_getpath_t(3SASL)

Name

sasl_getpath_t - the SASL callback function to indicate location of the security mechanism drivers

Synopsis

cc [ flag ... ] file ... –lsasl   [ library ... ]
#include <sasl/sasl.h>

int sasl_getpath_t(void *context, char **path);

Description

Use the sasl_getpath_t() function to enable the application to use a different location for the SASL security mechanism drivers, which are shared library files. If the sasl_getpath_t() callback is not used, SASL uses /usr/lib/sasl by default.

Parameters

context

The getpath context from the callback record

path

The path(s) for the location of the SASL security mechanism drivers. The values for path are colon-separated.

Return Values

Like other SASL callback functions, sasl_getpath_t() returns an integer that corresponds to a SASL error code. See <sasl.h> for a complete list of SASL error codes.

Errors

SASL_OK

The call to sasl_getpath_t() was successful.

See sasl_errors(3SASL) for information on SASL error codes.

Attributes

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
Availability
system/library/security/libsasl
Interface Stability
Committed
MT-Level
MT–Safe

See Also

sasl_errors(3SASL), attributes(5)