diff options
author | marha <marha@users.sourceforge.net> | 2010-11-19 13:03:39 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-11-19 13:03:39 +0000 |
commit | 773752eab55047c33bad0d88006bb69f5c601502 (patch) | |
tree | 07d6cabe0aeb5c349b50a20aa342ac9c28a97547 /tools/plink/sshgssc.h | |
parent | 491a69769cb9db97e6566679b6ac0887bdda3292 (diff) | |
download | vcxsrv-773752eab55047c33bad0d88006bb69f5c601502.tar.gz vcxsrv-773752eab55047c33bad0d88006bb69f5c601502.tar.bz2 vcxsrv-773752eab55047c33bad0d88006bb69f5c601502.zip |
Added missing files from plink -r 9025
Diffstat (limited to 'tools/plink/sshgssc.h')
-rw-r--r-- | tools/plink/sshgssc.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/plink/sshgssc.h b/tools/plink/sshgssc.h new file mode 100644 index 000000000..0f271f84a --- /dev/null +++ b/tools/plink/sshgssc.h @@ -0,0 +1,23 @@ +#ifndef PUTTY_SSHGSSC_H
+#define PUTTY_SSHGSSC_H
+#include "putty.h"
+#ifndef NO_GSSAPI
+
+#include "pgssapi.h"
+#include "sshgss.h"
+
+typedef struct gssapi_ssh_gss_ctx {
+ OM_uint32 maj_stat;
+ OM_uint32 min_stat;
+ gss_ctx_id_t ctx;
+} gssapi_ssh_gss_ctx;
+
+void ssh_gssapi_bind_fns(struct ssh_gss_library *lib);
+
+#else
+
+int ssh_gssapi_init(void);
+
+#endif /*NO_GSSAPI*/
+
+#endif /*PUTTY_SSHGSSC_H*/
|