Displaying 2 results from an estimated 2 matches for "sasl_interact_t".
Did you mean:
sasl_interact
2006 Jun 23
1
Off topic NSS_LDAP
Hi
Anybody can copile NSS_LDAP under Solaris 10 ?, i have a trouble compiling this tool.
bash-3.00# make
gcc -DHAVE_CONFIG_H -DLDAP_REFERRALS -DLDAP_DEPRECATED -D_REENTRANT -g -O2 -Wall -fPIC -c ldap-nss.c
ldap-nss.c: In function `do_sasl_interact':
ldap-nss.c:4113: error: `sasl_interact_t' undeclared (first use in this function)
ldap-nss.c:4113: error: (Each undeclared identifier is reported only once
ldap-nss.c:4113: error: for each function it appears in.)
ldap-nss.c:4113: error: `interact' undeclared (first use in this function)
ldap-nss.c:4113: error: syntax error before...
2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
...const u_char *key,
- uint32 flags,
- unsigned *outlen)
-{
- ntlm_response_t *resp;
- uint32 type = NTLM_RESPONSE;
- uint32 offset = sizeof(ntlm_response_t);
+static int ntlm_new_client_helper(struct ntlm_context *conn_context,
+ sasl_client_params_t *params,
+ sasl_interact_t **prompt_need,
+ sasl_out_params_t *oparams)
+{
+ struct ntlm_context *context =
+ (struct ntlm_context *)conn_context;
+
+ int auth_result = SASL_OK;
+ int domain_result = SASL_OK;
- if (!lm_resp || !nt_resp) {
- SETERROR(utils, "need NTLM responses");
- return SASL_FAIL...