aboutsummaryrefslogtreecommitdiff
path: root/include/libssh
diff options
context:
space:
mode:
authorLee Hambley <lee.hambley@gmail.com>2011-10-28 10:25:03 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-10-28 12:14:34 +0200
commit6bd95b50f535d07594f3659c67a1f5e501887641 (patch)
treecdbad12bf36f46152353596f516c162805576b28 /include/libssh
parentd8d9755b7ddeb2aee944d086ef95589a37532fd1 (diff)
downloadlibssh-6bd95b50f535d07594f3659c67a1f5e501887641.tar.gz
libssh-6bd95b50f535d07594f3659c67a1f5e501887641.tar.xz
libssh-6bd95b50f535d07594f3659c67a1f5e501887641.zip
Implement ssh_options_get(ssh_session, enum ssh_options_e, char**).
Diffstat (limited to 'include/libssh')
-rw-r--r--include/libssh/libssh.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 9c60eb3b..0104c8a9 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -427,6 +427,8 @@ LIBSSH_API int ssh_options_getopt(ssh_session session, int *argcptr, char **argv
LIBSSH_API int ssh_options_parse_config(ssh_session session, const char *filename);
LIBSSH_API int ssh_options_set(ssh_session session, enum ssh_options_e type,
const void *value);
+LIBSSH_API int ssh_options_get(ssh_session session, enum ssh_options_e type,
+ char **value);
LIBSSH_API int ssh_pcap_file_close(ssh_pcap_file pcap);
LIBSSH_API void ssh_pcap_file_free(ssh_pcap_file pcap);
LIBSSH_API ssh_pcap_file ssh_pcap_file_new(void);