Lines Matching refs:data
67 * data [in] - The session handle.
75 * krb5 [in/out] - The Kerberos 5 data struct being used and modified.
80 CURLcode Curl_auth_create_gssapi_user_message(struct Curl_easy *data,
115 Curl_gss_log_error(data, "gss_import_name() failed: ",
128 infof(data, "GSSAPI handshake failure (empty challenge message)");
135 major_status = Curl_gss_init_sec_context(data,
150 Curl_gss_log_error(data, "gss_init_sec_context() failed: ",
174 * data [in] - The session handle.
177 * krb5 [in/out] - The Kerberos 5 data struct being used and modified.
182 CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data,
203 infof(data, "GSSAPI handshake failure (empty security message)");
215 Curl_gss_log_error(data, "gss_unwrap() failed: ",
222 infof(data, "GSSAPI handshake failure (invalid security data)");
237 infof(data, "GSSAPI handshake failure (invalid security layer)");
246 we don't require one unless we are encrypting data, we tell the server
271 /* Setup the "authentication data" security buffer */
275 /* Encrypt the data */
280 Curl_gss_log_error(data, "gss_wrap() failed: ",
300 * This is used to clean up the GSSAPI (Kerberos V5) specific data.
304 * krb5 [in/out] - The Kerberos 5 data struct being cleaned up.