diff options
author | Steve Holme <steve_holme@hotmail.com> | 2016-04-03 20:26:03 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-04-03 20:26:03 +0100 |
commit | 9feb2676a4e153eef7f5536f940678af2df2cf9e (patch) | |
tree | 762af4c526bc0b6ac77da2375e925a1653aacf59 /lib/vauth/vauth.h | |
parent | e655ae0c80aa3ddbacc20cac349336e4696d7d74 (diff) | |
download | curl-9feb2676a4e153eef7f5536f940678af2df2cf9e.tar.gz |
vauth: Removed the need for a separate GSS-API based SPN function
Diffstat (limited to 'lib/vauth/vauth.h')
-rw-r--r-- | lib/vauth/vauth.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/vauth/vauth.h b/lib/vauth/vauth.h index 0047b3cf7..d3900fbc1 100644 --- a/lib/vauth/vauth.h +++ b/lib/vauth/vauth.h @@ -48,13 +48,11 @@ struct negotiatedata; /* This is used to build a SPN string */ #if !defined(USE_WINDOWS_SSPI) -char *Curl_auth_build_spn(const char *service, const char *instance); +char *Curl_auth_build_spn(const char *service, const char *host, + const char *realm); #else -TCHAR *Curl_auth_build_spn(const char *service, const char *instance); -#endif - -#if defined(HAVE_GSSAPI) -char *Curl_auth_build_gssapi_spn(const char *service, const char *instance); +TCHAR *Curl_auth_build_spn(const char *service, const char *host, + const char *realm); #endif /* This is used to generate a base64 encoded PLAIN cleartext message */ |