libssh2

Форк
0
/
libssh2_channel_read_ex.3 
50 строк · 1.8 Кб
1
.\" Copyright (C) The libssh2 project and its contributors.
2
.\" SPDX-License-Identifier: BSD-3-Clause
3
.TH libssh2_channel_read_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2"
4
.SH NAME
5
libssh2_channel_read_ex - read data from a channel stream
6
.SH SYNOPSIS
7
.nf
8
#include <libssh2.h>
9

10
ssize_t
11
libssh2_channel_read_ex(LIBSSH2_CHANNEL *channel, int stream_id,
12
                        char *buf, size_t buflen);
13

14
ssize_t
15
libssh2_channel_read(LIBSSH2_CHANNEL *channel,
16
                     char *buf, size_t buflen);
17

18
ssize_t
19
libssh2_channel_read_stderr(LIBSSH2_CHANNEL *channel,
20
                            char *buf, size_t buflen);
21
.fi
22
.SH DESCRIPTION
23
Attempt to read data from an active channel stream. All channel streams have
24
one standard I/O substream (stream_id == 0), and may have up to 2^32 extended
25
data streams as identified by the selected \fIstream_id\fP. The SSH2 protocol
26
currently defines a stream ID of 1 to be the stderr substream.
27

28
\fIchannel\fP - active channel stream to read from.
29

30
\fIstream_id\fP - substream ID number (e.g. 0 or SSH_EXTENDED_DATA_STDERR)
31

32
\fIbuf\fP - pointer to storage buffer to read data into
33

34
\fIbuflen\fP - size of the buf storage
35

36
\fIlibssh2_channel_read(3)\fP and \fIlibssh2_channel_read_stderr(3)\fP are
37
macros.
38
.SH RETURN VALUE
39
Actual number of bytes read or negative on failure. It returns
40
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
41
LIBSSH2_ERROR_EAGAIN is a negative number, it is not really a failure per se.
42

43
Note that a return value of zero (0) can in fact be a legitimate value and
44
only signals that no payload data was read. It is not an error.
45
.SH ERRORS
46
\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.
47

48
\fILIBSSH2_ERROR_CHANNEL_CLOSED\fP - The channel has been closed.
49
.SH SEE ALSO
50
.BR libssh2_poll_channel_read(3)
51

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.