From 31727bf33a1349c0b611ab60059d90d44df7dedf Mon Sep 17 00:00:00 2001 From: Martin Drasar Date: Wed, 19 Oct 2011 14:42:55 +0200 Subject: Ignore and debug messages can be sent using public API Signed-off-by: Martin Drasar Signed-off-by: Andreas Schneider --- include/libssh/libssh.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/libssh/libssh.h') diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 815afc5..f22ce71 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -494,6 +494,8 @@ LIBSSH_API int ssh_pki_export_pubkey_file(const ssh_key key, const char *filename); LIBSSH_API void ssh_print_hexa(const char *descr, const unsigned char *what, size_t len); +LIBSSH_API int ssh_send_ignore (ssh_session session, const char *data); +LIBSSH_API int ssh_send_debug (ssh_session session, const char *message, int always_display); LIBSSH_API int ssh_scp_accept_request(ssh_scp scp); LIBSSH_API int ssh_scp_close(ssh_scp scp); LIBSSH_API int ssh_scp_deny_request(ssh_scp scp, const char *reason); -- cgit