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

gssapi: Add suppport to set GSSAPI server identity.

This commit is contained in:
Andreas Schneider
2013-11-15 15:36:02 +01:00
parent c481f9dafd
commit 41d99d32e8
5 changed files with 28 additions and 2 deletions

View File

@@ -331,7 +331,8 @@ enum ssh_options_e {
SSH_OPTIONS_COMPRESSION,
SSH_OPTIONS_COMPRESSION_LEVEL,
SSH_OPTIONS_KEY_EXCHANGE,
SSH_OPTIONS_HOSTKEYS
SSH_OPTIONS_HOSTKEYS,
SSH_OPTIONS_GSSAPI_SERVER_IDENTITY
};
enum {

View File

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