From 60837b1538e4d61cb847d382a8a608e333f6d0fd Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 29 Jul 2009 16:34:21 +0200 Subject: Add channel_write_stderr prototype to the right header file. Signed-off-by: Andreas Schneider --- include/libssh/libssh.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/libssh/libssh.h') diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 924992a..8d2075f 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -285,6 +285,7 @@ int channel_request_env(ssh_channel channel, const char *name, const char *value int channel_request_exec(ssh_channel channel, const char *cmd); int channel_request_sftp(ssh_channel channel); int channel_write(ssh_channel channel, const void *data, uint32_t len); +int channel_write_stderr(ssh_channel channel, const void *data, uint32_t len); int channel_send_eof(ssh_channel channel); int channel_is_eof(ssh_channel channel); int channel_read(ssh_channel channel, void *dest, uint32_t count, int is_stderr); -- cgit