aboutsummaryrefslogtreecommitdiff
path: root/include/libssh
diff options
context:
space:
mode:
authorAxel Eppe <aeppe@google.com>2018-04-06 13:41:39 +0100
committerAndreas Schneider <asn@cryptomilk.org>2018-04-10 11:16:23 +0200
commitfb2fefb3c65996abac7defcdc0ea758060ea3111 (patch)
tree83267b031841644d37e69ac51c0b532bddb68107 /include/libssh
parent6026fc80369ba588a10d6d1abe1767e379a5b97b (diff)
downloadlibssh-fb2fefb3c65996abac7defcdc0ea758060ea3111.tar.gz
libssh-fb2fefb3c65996abac7defcdc0ea758060ea3111.tar.xz
libssh-fb2fefb3c65996abac7defcdc0ea758060ea3111.zip
channels: add ssh_channel_request_send_break to support RFC 4335
Signed-off-by: Axel Eppe <aeppe@google.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include/libssh')
-rw-r--r--include/libssh/libssh.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index b00a428a..0f509aea 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -418,6 +418,7 @@ LIBSSH_API int ssh_channel_request_pty_size(ssh_channel channel, const char *ter
int cols, int rows);
LIBSSH_API int ssh_channel_request_shell(ssh_channel channel);
LIBSSH_API int ssh_channel_request_send_signal(ssh_channel channel, const char *signum);
+LIBSSH_API int ssh_channel_request_send_break(ssh_channel channel, uint32_t length);
LIBSSH_API int ssh_channel_request_sftp(ssh_channel channel);
LIBSSH_API int ssh_channel_request_subsystem(ssh_channel channel, const char *subsystem);
LIBSSH_API int ssh_channel_request_x11(ssh_channel channel, int single_connection, const char *protocol,