summaryrefslogtreecommitdiff
path: root/lib/vauth/vauth.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2016-04-03 20:26:03 +0100
committerSteve Holme <steve_holme@hotmail.com>2016-04-03 20:26:03 +0100
commit9feb2676a4e153eef7f5536f940678af2df2cf9e (patch)
tree762af4c526bc0b6ac77da2375e925a1653aacf59 /lib/vauth/vauth.h
parente655ae0c80aa3ddbacc20cac349336e4696d7d74 (diff)
downloadgnurl-9feb2676a4e153eef7f5536f940678af2df2cf9e.tar.gz
gnurl-9feb2676a4e153eef7f5536f940678af2df2cf9e.tar.bz2
gnurl-9feb2676a4e153eef7f5536f940678af2df2cf9e.zip
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.h10
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 */