Lines Matching defs:spn
105 if(!krb5->spn) {
106 /* Generate our SPN */
107 char *spn = Curl_auth_build_spn(service, NULL, host);
108 if(!spn)
111 /* Populate the SPN structure */
112 spn_token.value = spn;
113 spn_token.length = strlen(spn);
115 /* Import the SPN */
117 GSS_C_NT_HOSTBASED_SERVICE, &krb5->spn);
122 free(spn);
127 free(spn);
153 krb5->spn,
394 /* Free the SPN */
395 if(krb5->spn != GSS_C_NO_NAME) {
396 gss_release_name(&minor_status, &krb5->spn);
397 krb5->spn = GSS_C_NO_NAME;