Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / sshgssc.h
1 #ifndef PUTTY_SSHGSSC_H
2 #define PUTTY_SSHGSSC_H
3 #include "putty.h"
4 #ifndef NO_GSSAPI
5
6 #include "pgssapi.h"
7 #include "sshgss.h"
8
9 typedef struct gssapi_ssh_gss_ctx {
10 OM_uint32 maj_stat;
11 OM_uint32 min_stat;
12 gss_ctx_id_t ctx;
13 } gssapi_ssh_gss_ctx;
14
15 void ssh_gssapi_bind_fns(struct ssh_gss_library *lib);
16
17 #else
18
19 int ssh_gssapi_init(void);
20
21 #endif /*NO_GSSAPI*/
22
23 #endif /*PUTTY_SSHGSSC_H*/