File: gssc.h

package info (click to toggle)
putty 0.78-2%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,964 kB
  • sloc: ansic: 137,777; python: 7,775; perl: 1,798; makefile: 133; sh: 111
file content (24 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef PUTTY_SSHGSSC_H
#define PUTTY_SSHGSSC_H
#include "putty.h"
#ifndef NO_GSSAPI

#include "pgssapi.h"
#include "gss.h"

typedef struct gssapi_ssh_gss_ctx {
    OM_uint32 maj_stat;
    OM_uint32 min_stat;
    gss_ctx_id_t ctx;
    time_t expiry;
} 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*/