ssh2/docs/libssh2_channel_forward_accept.3

21 lines
737 B
Groff
Raw Normal View History

.TH libssh2_channel_forward_accept 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
2006-12-21 15:09:12 +01:00
.SH NAME
libssh2_channel_forward_accept - accept a queued connection
.SH SYNOPSIS
#include <libssh2.h>
LIBSSH2_CHANNEL *
libssh2_channel_forward_accept(LIBSSH2_LISTENER *listener);
2006-12-21 15:09:12 +01:00
.SH DESCRIPTION
\fIlistener\fP is a forwarding listener instance as returned by
2009-03-17 00:25:14 +01:00
\fBlibssh2_channel_forward_listen_ex(3)\fP.
2006-12-21 15:09:12 +01:00
.SH RETURN VALUE
A newly allocated channel instance or NULL on failure.
.SH ERRORS
When this function returns NULL use \fIlibssh2_session_last_errno(3)\fP to
extract the error code. If that code is \fILIBSSH2_ERROR_EAGAIN\fP, the
session is set to do non-blocking I/O but the call would block.
2007-06-13 14:51:10 +02:00
.SH SEE ALSO
2009-03-17 00:25:14 +01:00
.BR libssh2_channel_forward_listen_ex(3)