libssh2_channel_window_read_ex.3 (967B)
1.TH libssh2_channel_window_read_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2" 2.SH NAME 3libssh2_channel_window_read_ex - Check the status of the read window 4.SH SYNOPSIS 5.nf 6#include <libssh2.h> 7 8unsigned long 9libssh2_channel_window_read_ex(LIBSSH2_CHANNEL *channel, 10 unsigned long *read_avail, 11 unsigned long *window_size_initial) 12.fi 13.SH DESCRIPTION 14Check the status of the read window. Returns the number of bytes which the 15remote end may send without overflowing the window limit read_avail (if 16passed) will be populated with the number of bytes actually available to be 17read window_size_initial (if passed) will be populated with the 18window_size_initial as defined by the channel_open request 19.SH RETURN VALUE 20The number of bytes which the remote end may send without overflowing the 21window limit 22.SH ERRORS 23.SH SEE ALSO 24.BR libssh2_channel_receive_window_adjust(3), 25.BR libssh2_channel_window_write_ex(3)