加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sshgssc.h 420 Bytes
一键复制 编辑 原始数据 按行查看 历史
hiac 提交于 2018-07-26 15:59 . init
#ifndef PUTTY_SSHGSSC_H
#define PUTTY_SSHGSSC_H
#include "putty.h"
#ifndef NO_GSSAPI
#include "pgssapi.h"
#include "sshgss.h"
typedef struct gssapi_ssh_gss_ctx {
OM_uint32 maj_stat;
OM_uint32 min_stat;
gss_ctx_id_t ctx;
} 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*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化