Displaying 1 result from an estimated 1 matches for "ntlm_context".
2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
...v 1.61 2003/03/26 17:18:04 rjs3 Exp $";
 
-    if (!len) len = xstrlen(str);
-    
-    while (len && cp && *cp) {
-	*cp = toupper((int) *cp);
-	cp++;
-	len--;
-    }
+/*****************************  Server Section  *****************************/
 
-    return (str);
-}
+struct ntlm_context {
+	pid_t child_pid;
+	FILE *pipe_in;
+	FILE *pipe_out;
+	int first;
+	sasl_secret_t *password;	/* user password */
+	unsigned int free_password; /* set if we need to free password */
+	unsigned int sent_password; /* set if we have told ntlm_auth the password already */
+	const char *authid;
+	cons...