summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-11-15 16:09:59 -0500
committerSimo Sorce <simo@redhat.com>2013-11-15 16:10:29 -0500
commit49a4bf29bbe1555029efe4e1fd749ed165be172e (patch)
treed7c17a2c5776cac3a008d4bca41dfa632b21bc50 /src
parentc2312f9dda9745f77082d5fe9accd6dd67b1bd99 (diff)
downloadlibssh-49a4bf29bbe1555029efe4e1fd749ed165be172e.tar.gz
libssh-49a4bf29bbe1555029efe4e1fd749ed165be172e.tar.xz
libssh-49a4bf29bbe1555029efe4e1fd749ed165be172e.zip
options: Add SSH_OPTIONS_GSSAPI_DELEGATE_CREDENTIALS option.
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'src')
-rw-r--r--src/options.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c
index 4791e15..24d34df 100644
--- a/src/options.c
+++ b/src/options.c
@@ -375,6 +375,10 @@ int ssh_options_set_algo(ssh_session session, int algo,
* Set it to specify the GSSAPI client identity that libssh
* should expect when connecting to the server (const char *).
*
+ * - SSH_OPTIONS_GSSAPI_DELEGATE_CREDENTIALS
+ * Set it to specify that GSSAPI should delegate credentials
+ * to the server (int, 0 = false).
+ *
* @param value The value to set. This is a generic pointer and the
* datatype which is used should be set according to the
* type set.
@@ -828,6 +832,17 @@ int ssh_options_set(ssh_session session, enum ssh_options_e type,
}
}
break;
+ case SSH_OPTIONS_GSSAPI_DELEGATE_CREDENTIALS:
+ if (value == NULL) {
+ ssh_set_error_invalid(session);
+ return -1;
+ } else {
+ int x = *(int *)value;
+
+ session->opts.gss_delegate_creds = (x & 0xff);
+ }
+ break;
+
default:
ssh_set_error(session, SSH_REQUEST_DENIED, "Unknown ssh option %d", type);
return -1;