aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cynapses.org>2010-12-08 10:50:08 +0100
committerAndreas Schneider <asn@cynapses.org>2010-12-08 10:52:15 +0100
commit038c764055b84430a85ffdb893206dea24dafe28 (patch)
tree2d3809a926065a1d3d63ccf35971f8b5ce97926c /include
parent3ea33f9ab68e0a6367a34837fea17e7ea1c04383 (diff)
downloadlibssh-038c764055b84430a85ffdb893206dea24dafe28.tar.gz
libssh-038c764055b84430a85ffdb893206dea24dafe28.tar.xz
libssh-038c764055b84430a85ffdb893206dea24dafe28.zip
server: Remove channel_write_stderr.
Diffstat (limited to 'include')
-rw-r--r--include/libssh/libsshpp.hpp2
-rw-r--r--include/libssh/server.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/include/libssh/libsshpp.hpp b/include/libssh/libsshpp.hpp
index b874ae9f..880c4921 100644
--- a/include/libssh/libsshpp.hpp
+++ b/include/libssh/libsshpp.hpp
@@ -545,7 +545,7 @@ public:
int write(const void *data, size_t len, bool is_stderr=false){
int ret;
if(is_stderr){
- ret=channel_write_stderr(channel,data,len);
+ ret=ssh_channel_write_stderr(channel,data,len);
} else {
ret=ssh_channel_write(channel,data,len);
}
diff --git a/include/libssh/server.h b/include/libssh/server.h
index 6614ada4..cd334c1d 100644
--- a/include/libssh/server.h
+++ b/include/libssh/server.h
@@ -167,8 +167,6 @@ LIBSSH_API int ssh_handle_key_exchange(ssh_session session);
*/
LIBSSH_API void ssh_bind_free(ssh_bind ssh_bind_o);
-LIBSSH_API int channel_write_stderr(ssh_channel channel, const void *data, uint32_t len);
-
/* messages.c */
LIBSSH_API int ssh_message_reply_default(ssh_message msg);