1libssh2_channel_handle_extended_data(l3i)bslsihb2ssh2_channel_handle_extended_data(3)
2
3
4
6 libssh2_channel_handle_extended_data - set extended data handling mode
7
9 #include <libssh2.h>
10
11 void
12 libssh2_channel_handle_extended_data(LIBSSH2_CHANNEL *channel,
13 int ignore_mode);
14
16 This function is deprecated. Use the libssh2_channel_handle_ex‐
17 tended_data2(3) function instead!
18
19 channel - Active channel stream to change extended data handling on.
20
21 ignore_mode - One of the three LIBSSH2_CHANNEL_EXTENDED_DATA_* Con‐
22 stants.
23 LIBSSH2_CHANNEL_EXTENDED_DATA_NORMAL: Queue extended data for eventual
24 reading
25 LIBSSH2_CHANNEL_EXTENDED_DATA_MERGE: Treat extended data and ordinary
26 data the same. Merge all substreams such that calls to libssh2_chan‐
27 nel_read(3) will pull from all substreams on a first-in/first-out ba‐
28 sis.
29 LIBSSH2_CHANNEL_EXTENDED_DATA_IGNORE: Discard all extended data as it
30 arrives.
31
32 Change how a channel deals with extended data packets. By default all
33 extended data is queued until read by libssh2_channel_read_ex(3)
34
36 None.
37
39 libssh2_channel_handle_extended_data2(3) libssh2_channel_read_ex(3)
40
41
42
43libssh2 0.15 1 Junl2i0b0s7sh2_channel_handle_extended_data(3)