sshgssc.h 397 B

123456789101112131415161718192021222324
  1. #ifndef PUTTY_SSHGSSC_H
  2. #define PUTTY_SSHGSSC_H
  3. #include "putty.h"
  4. #ifndef NO_GSSAPI
  5. #include "pgssapi.h"
  6. #include "sshgss.h"
  7. typedef struct gssapi_ssh_gss_ctx {
  8. OM_uint32 maj_stat;
  9. OM_uint32 min_stat;
  10. gss_ctx_id_t ctx;
  11. } gssapi_ssh_gss_ctx;
  12. void ssh_gssapi_bind_fns(struct ssh_gss_library *lib);
  13. #else
  14. int ssh_gssapi_init(void);
  15. #endif /*NO_GSSAPI*/
  16. #endif /*PUTTY_SSHGSSC_H*/