Displaying 1 result from an estimated 1 matches for "sasl_interact".
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_FA...