1sasl_auxprop_request(10 July 2001) sasl_auxprop_request(10 July 2001)
2
3
4
6 sasl_auxprop_request - Request Auxiliary Properties from SASL
7
8
10 #include <sasl/sasl.h>
11
12
13 int sasl_auxprop_request(sasl_conn_t *conn,
14 const char ** propnames)
15
16
18 sasl_auxprop_request will request that the SASL library obtain proper‐
19 ties from any auxiliary property plugins that might be installed (such
20 as the user's home directory from an LDAP server for example). Such
21 lookup occurs just after username canonicalization is complete. There‐
22 fore, the request should be made before the call to
23 sasl_server_start(3), but after the call to sasl_server_new(3).
24
25 conn the sasl_conn_t for which the request is being made.
26
27 propnames a NULL-terminated array of property names to request. Note
28 that this array must persist until a call to sasl_dispose on the
29 sasl_conn_t.
30
31
33 Returns SASL_OK on success. See sasl_errors(3) for meanings of other
34 return codes.
35
36
38 RFC 2222
39
41 sasl(3), sasl_errors(3), sasl_auxprop(3), sasl_auxprop_getctx(3),
42 sasl_server_new(3), sasl_server_start(3)
43
44
45
46SASL man pages SASL sasl_auxprop_request(10 July 2001)