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.
 
 
 
 

21 lines
737 B

  1. .TH libssh2_channel_forward_accept 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
  2. .SH NAME
  3. libssh2_channel_forward_accept - accept a queued connection
  4. .SH SYNOPSIS
  5. #include <libssh2.h>
  6. LIBSSH2_CHANNEL *
  7. libssh2_channel_forward_accept(LIBSSH2_LISTENER *listener);
  8. .SH DESCRIPTION
  9. \fIlistener\fP is a forwarding listener instance as returned by
  10. \fBlibssh2_channel_forward_listen_ex(3)\fP.
  11. .SH RETURN VALUE
  12. A newly allocated channel instance or NULL on failure.
  13. .SH ERRORS
  14. When this function returns NULL use \fIlibssh2_session_last_errno(3)\fP to
  15. extract the error code. If that code is \fILIBSSH2_ERROR_EAGAIN\fP, the
  16. session is set to do non-blocking I/O but the call would block.
  17. .SH SEE ALSO
  18. .BR libssh2_channel_forward_listen_ex(3)