geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
967 B

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