diff options
Diffstat (limited to 'include/libssh')
-rw-r--r-- | include/libssh/libssh.h | 3 | ||||
-rw-r--r-- | include/libssh/session.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 25923e1..d71a693 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -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 { diff --git a/include/libssh/session.h b/include/libssh/session.h index d3ca408..86f94df 100644 --- a/include/libssh/session.h +++ b/include/libssh/session.h @@ -184,6 +184,7 @@ struct ssh_session_struct { int ssh1; char compressionlevel; char *gss_server_identity; + char *gss_client_identity; } opts; }; |