1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

options: Add SSH_OPTIONS_GSSAPI_CLIENT_IDENTITY option.

This commit is contained in:
Andreas Schneider
2013-11-15 15:48:19 +01:00
parent 503c729bb0
commit 095a01b70c
4 changed files with 22 additions and 1 deletions

View File

@@ -332,7 +332,8 @@ enum ssh_options_e {
SSH_OPTIONS_COMPRESSION_LEVEL,
SSH_OPTIONS_KEY_EXCHANGE,
SSH_OPTIONS_HOSTKEYS,
SSH_OPTIONS_GSSAPI_SERVER_IDENTITY
SSH_OPTIONS_GSSAPI_SERVER_IDENTITY,
SSH_OPTIONS_GSSAPI_CLIENT_IDENTITY
};
enum {

View File

@@ -184,6 +184,7 @@ struct ssh_session_struct {
int ssh1;
char compressionlevel;
char *gss_server_identity;
char *gss_client_identity;
} opts;
};