aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2013-11-15 15:36:02 +0100
committerAndreas Schneider <asn@cryptomilk.org>2013-11-15 16:29:49 +0100
commit651c173e72ceecb648c24c12d3a900deeb200470 (patch)
tree6a81f3407b854e0b70b5f25f09fe13b52d502a48 /include
parentf76cd8b6d5fd9215e10640075880b4d7eddb1b7d (diff)
downloadlibssh-651c173e72ceecb648c24c12d3a900deeb200470.tar.gz
libssh-651c173e72ceecb648c24c12d3a900deeb200470.tar.xz
libssh-651c173e72ceecb648c24c12d3a900deeb200470.zip
gssapi: Add suppport to set GSSAPI server identity.
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 f1b9fd8c..25923e13 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -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 {
diff --git a/include/libssh/session.h b/include/libssh/session.h
index 281c7c66..d3ca4086 100644
--- a/include/libssh/session.h
+++ b/include/libssh/session.h
@@ -183,6 +183,7 @@ struct ssh_session_struct {
int ssh2;
int ssh1;
char compressionlevel;
+ char *gss_server_identity;
} opts;
};