1libssh2_channel_flush_ex(3) libssh2 libssh2_channel_flush_ex(3)
2
3
4
6 libssh2_channel_flush_ex - flush a channel
7
9 #include <libssh2.h>
10
11 int
12 libssh2_channel_flush_ex(LIBSSH2_CHANNEL *channel, int streamid);
13
14 int
15 libssh2_channel_flush(LIBSSH2_CHANNEL *channel);
16
17 int
18 libssh2_channel_flush_stderr(LIBSSH2_CHANNEL *channel);
19
21 channel - Active channel stream to flush.
22
23 streamid - Specific substream number to flush. Groups of substreams may
24 be flushed by passing on of the following Constants.
25 LIBSSH2_CHANNEL_FLUSH_EXTENDED_DATA: Flush all extended data substreams
26 LIBSSH2_CHANNEL_FLUSH_ALL: Flush all substreams
27
28 Flush the read buffer for a given channel instance. Individual sub‐
29 streams may be flushed by number or using one of the provided macros.
30
32 Return the number of bytes flushed or negative on failure. It returns
33 LIBSSH2_ERROR_EAGAIN when it would otherwise block. While LIBSSH2_ER‐
34 ROR_EAGAIN is a negative number, it is not really a failure per se.
35
36
37
38libssh2 0.15 1 Jun 2007 libssh2_channel_flush_ex(3)