From b7ba56961763ef9ca8fecc1446b91856c0abd62a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 14 May 2015 22:55:25 -0400 Subject: [PATCH] another function --- libssh2.d | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libssh2.d b/libssh2.d index 38c271f..052ce4b 100644 --- a/libssh2.d +++ b/libssh2.d @@ -2,6 +2,8 @@ // just link with it on Linux // it'll need a couple dlls and a lib on windows. +module arsd.libssh2; + version(libssh_example) void main() { import std.socket; @@ -148,10 +150,10 @@ extern(C) { void libssh2_exit(); // stream_id 0 == normal, 1 == error. - ssize_t libssh2_channel_read_ex(LIBSSH2_CHANNEL *channel, int stream_id, char *buf, size_t buflen); + ssize_t libssh2_channel_read_ex(LIBSSH2_CHANNEL *channel, int stream_id, void *buf, size_t buflen); ssize_t libssh2_channel_write_ex(LIBSSH2_CHANNEL *channel, - int stream_id, char *buf, + int stream_id, const(void)* buf, size_t buflen); void libssh2_session_set_blocking(LIBSSH2_SESSION* session, int blocking); @@ -163,6 +165,8 @@ extern(C) { int libssh2_keepalive_send(LIBSSH2_SESSION *session, int *seconds_to_next); + LIBSSH2_CHANNEL * libssh2_channel_direct_tcpip_ex(LIBSSH2_SESSION *session, const char *host, int port, const char *shost, int sport); + int libssh2_channel_request_pty_size_ex(LIBSSH2_CHANNEL *channel, int width, int height, int width_px, @@ -172,5 +176,7 @@ extern(C) { libssh2_userauth_list(LIBSSH2_SESSION *session, const char *username, uint username_len); + int libssh2_channel_eof(LIBSSH2_CHANNEL*); + enum LIBSSH2_ERROR_EAGAIN = -37; }