1sasl_getsimplSei_mtp(l3eSAASuLt)hentication Security Layer LibrarysaFsuln_cgteitosnismple_t(3SASL)
2
3
4
6 sasl_getsimple_t - the SASL callback function for username, authname
7 and realm
8
10 cc [ flag ... ] file ... -lsasl [ library ... ]
11 #include <sasl/sasl.h>
12
13 int sasl_getsimple_t(void *context, int id, const char **result,
14 unsigned *len);
15
16
18 Use the sasl_getsimple_t() callback function to retrieve simple data
19 from the application such as the authentication name, the authorization
20 name, and the realm. The id parameter indicates which value is
21 requested.
22
24 context The context from the callback structure.
25
26
27 id The callback ID. Possible values for id include:
28
29 SASL_CB_USER Client user identity for login.
30
31
32 SASL_CB_AUTHNAME Client authentication name.
33
34
35 SASL_CB_LANGUAGE Comma-separated list of languages pur‐
36 suant to RFC 1766.
37
38
39 SASL_CB_CNONCE The client-nonce. This value is used
40 primarily for testing.
41
42
43
44 result To cancel user, set the value of result with a null-termi‐
45 nated string. If the value of result is NULL, then the user
46 is cancelled.
47
48
49 len The length of result.
50
51
53 Like other SASL callback functions, sasl_getsimple_t() returns an inte‐
54 ger that corresponds to a SASL error code. See <sasl.h> for a complete
55 list of SASL error codes.
56
58 SASL_OK The call to sasl_getsimple_t() was successful.
59
60
61
62 See sasl_errors(3SASL) for information on SASL error codes.
63
65 See attributes(5) for descriptions of the following attributes:
66
67
68
69
70 ┌─────────────────────────────┬─────────────────────────────┐
71 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
72 ├─────────────────────────────┼─────────────────────────────┤
73 │Availability │SUNWlibsasl │
74 ├─────────────────────────────┼─────────────────────────────┤
75 │Interface Stability │Evolving │
76 ├─────────────────────────────┼─────────────────────────────┤
77 │MT-Level │MT-Safe │
78 └─────────────────────────────┴─────────────────────────────┘
79
81 sasl_errors(3SASL), attributes(5)
82
83
84 Alvestrand, H. RFC 1766, Tags for the Identification of Languages. Net‐
85 work Working Group. November 1995.
86
87
88
89SunOS 5.11 27 Oct 2003 sasl_getsimple_t(3SASL)