Home | History | Annotate | Download | only in vauth

Lines Matching refs:spn

91   if(!krb5->spn) {
92 /* Generate our SPN */
93 char *spn = Curl_auth_build_spn(service, NULL, host);
94 if(!spn)
97 /* Populate the SPN structure */
98 spn_token.value = spn;
99 spn_token.length = strlen(spn);
101 /* Import the SPN */
103 GSS_C_NT_HOSTBASED_SERVICE, &krb5->spn);
108 free(spn);
113 free(spn);
139 krb5->spn,
380 /* Free the SPN */
381 if(krb5->spn != GSS_C_NO_NAME) {
382 gss_release_name(&minor_status, &krb5->spn);
383 krb5->spn = GSS_C_NO_NAME;