summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2013-11-15 15:48:19 +0100
committerAndreas Schneider <asn@cryptomilk.org>2013-11-15 16:29:49 +0100
commitf5d1d813fb6dac5771bead197c2528dd46eab7b3 (patch)
treea49d5f2bb4a5055c750c2de47822d7e898a70615 /include
parent92928a7d8d4a2873ba1d26450e97f4435791ebc8 (diff)
options: Add SSH_OPTIONS_GSSAPI_CLIENT_IDENTITY option.
Diffstat (limited to 'include')
-rw-r--r--include/libssh/libssh.h3
-rw-r--r--include/libssh/session.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 25923e13..d71a6936 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 d3ca4086..86f94dfa 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;
};