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.
 
 
 
 

36 lines
1.2 KiB

  1. .TH libssh2_channel_handle_extended_data 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
  2. .SH NAME
  3. libssh2_channel_handle_extended_data - set extended data handling mode
  4. .SH SYNOPSIS
  5. #include <libssh2.h>
  6. void
  7. libssh2_channel_handle_extended_data(LIBSSH2_CHANNEL *channel, int ignore_mode);
  8. .SH DESCRIPTION
  9. This function is deprecated. Use the
  10. \fIlibssh2_channel_handle_extended_data2(3)\fP function instead!
  11. \fIchannel\fP - Active channel stream to change extended data handling on.
  12. \fIignore_mode\fP - One of the three LIBSSH2_CHANNEL_EXTENDED_DATA_* Constants.
  13. .br
  14. \fBLIBSSH2_CHANNEL_EXTENDED_DATA_NORMAL\fP: Queue extended data for eventual
  15. reading
  16. .br
  17. \fBLIBSSH2_CHANNEL_EXTENDED_DATA_MERGE\fP: Treat extended data and ordinary
  18. data the same. Merge all substreams such that calls to
  19. \fIlibssh2_channel_read(3)\fP will pull from all substreams on a
  20. first-in/first-out basis.
  21. .br
  22. \fBLIBSSH2_CHANNEL_EXTENDED_DATA_IGNORE\fP: Discard all extended data as it
  23. arrives.
  24. Change how a channel deals with extended data packets. By default all extended
  25. data is queued until read by \fIlibssh2_channel_read_ex(3)\fP
  26. .SH RETURN VALUE
  27. None.
  28. .SH SEE ALSO
  29. .BR libssh2_channel_handle_extended_data2(3)
  30. .BR libssh2_channel_read_ex(3)