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