gssc.h 413 B

12345678910111213141516171819202122232425
  1. #ifndef PUTTY_SSHGSSC_H
  2. #define PUTTY_SSHGSSC_H
  3. #include "putty.h"
  4. #ifndef NO_GSSAPI
  5. #include "pgssapi.h"
  6. #include "gss.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. time_t expiry;
  12. } gssapi_ssh_gss_ctx;
  13. void ssh_gssapi_bind_fns(struct ssh_gss_library *lib);
  14. #else
  15. int ssh_gssapi_init(void);
  16. #endif /*NO_GSSAPI*/
  17. #endif /*PUTTY_SSHGSSC_H*/