diff options
| author | Jon Simons <jon@jonsimons.org> | 2014-02-03 22:37:25 -0800 |
|---|---|---|
| committer | Andreas Schneider <asn@cryptomilk.org> | 2014-02-06 11:13:20 +0100 |
| commit | 13f4e31ad1c83045635417ee7c58fdf384a1bb97 (patch) | |
| tree | f796c4bc4ac0bf7c635cce74f8c680cd61b9d589 /include | |
| parent | da5fa4ef66ae97dfab36c9d67f156fcc234af30c (diff) | |
session: add getters for session cipher names
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/libssh/libssh.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index b3f6ae4b..412215bf 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -628,6 +628,8 @@ LIBSSH_API int ssh_event_remove_session(ssh_event event, ssh_session session); LIBSSH_API void ssh_event_free(ssh_event event); LIBSSH_API const char* ssh_get_clientbanner(ssh_session session); LIBSSH_API const char* ssh_get_serverbanner(ssh_session session); +LIBSSH_API const char* ssh_get_cipher_in(ssh_session session); +LIBSSH_API const char* ssh_get_cipher_out(ssh_session session); #ifndef LIBSSH_LEGACY_0_4 #include "libssh/legacy.h" |
