Displaying 2 results from an estimated 2 matches for "domain_len".
Did you mean:
domain_key
2003 Sep 23
0
[PATCH] tdb multiple format
...- /* unpack the buffer into variables */
- len = tdb_unpack ((char *)buf, buflen, TDB_FORMAT_STRING,
- &logon_time,
- &logoff_time,
- &kickoff_time,
- &pass_last_set_time,
- &pass_can_change_time,
- &pass_must_change_time,
- &username_len, &username,
- &domain_len, &domain,
- &nt_username_len, &nt_username,
- &fullname_len, &fullname,
- &homedir_len, &homedir,
- &dir_drive_len, &dir_drive,
- &logon_script_len, &logon_script,
- &profile_path_len, &profile_path,
- &acct_desc_len, &acct_desc,
-...
2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
...attribute__((unused)),
- sasl_out_params_t *oparams)
-{
- ntlm_response_t *response = (ntlm_response_t *) clientin;
- unsigned char *lm_resp_c = NULL, *nt_resp_c = NULL;
- char *domain = NULL, *authid = NULL;
- sasl_secret_t *password = NULL;
- unsigned lm_resp_len, nt_resp_len, domain_len, authid_len, pass_len;
- int result;
- const char *password_request[] = { SASL_AUX_PASSWORD,
- NULL };
- struct propval auxprop_values[2];
- unsigned char hash[NTLM_HASH_LENGTH];
- unsigned char lm_resp_s[NTLM_RESP_LENGTH], nt_resp_s[NTLM_RESP_LENGTH];
-
- if (!response...