repo.or.cz
/
TortoiseGit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update libgit2 AutoCRLF patches
[TortoiseGit.git]
/
src
/
TortoisePlink
/
sshgssc.h
blob
0f271f84af260095a738d7577ae9626882192424
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*/