mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
99fffd6ed3
reorganises the GSSAPI support so that it handles alternative implementations of the GSS-API. In particular, this means PuTTY can now talk to MIT Kerberos for Windows instead of being limited to SSPI. I don't know for sure whether further tweaking will be needed (to the UI, most likely, or to automatic selection of credentials), but testing reports suggest it's now at least worth committing to trunk to get it more widely tested. [originally from svn r8952]
11 lines
283 B
C
11 lines
283 B
C
/*
|
|
* Stub definitions of the GSSAPI library list, for Unix pterm and
|
|
* any other application that needs the symbols defined but has no
|
|
* use for them.
|
|
*/
|
|
|
|
const int ngsslibs = 0;
|
|
const char *const gsslibnames[1] = { "dummy" };
|
|
const char *const gsslibkeywords[1] = { "dummy" };
|
|
|