Displaying 1 result from an estimated 1 matches for "mech_gssapi_spnego".
2008 Aug 12
5
[PATCH] Support GSS-SPNEGO natively
...00
@@ -417,4 +424,21 @@
mech_gssapi_auth_free
};
+/* MTI Kerberos > 1.5 supports SPNEGO for Kerberos tickets internally.
+ Nothing else needs to be done here. Note however that this does not
+ support SPNEGO when the only available credential is NTLM.. */
+const struct mech_module mech_gssapi_spnego = {
+ "GSS-SPNEGO",
+
+ MEMBER(flags) 0,
+
+ MEMBER(passdb_need_plain) FALSE,
+ MEMBER(passdb_need_credentials) FALSE,
+
+ mech_gssapi_auth_new,
+ mech_gssapi_auth_initial,
+ mech_gssapi_auth_continue,
+ mech_gssapi_auth_free
+};
+...