mirror of
				https://github.com/libssh2/libssh2.git
				synced 2025-10-30 12:05:34 +03:00 
			
		
		
		
	- All files have prominent copyright and SPDX identifier - If not embedded in the file, in the .reuse/dep5 file - All used licenses are in LICENSES/ (not shipped in tarballs) - A new REUSE CI job verify that all files are OK Assisted-by: Viktor Szakats Closes #1084
		
			
				
	
	
		
			24 lines
		
	
	
		
			839 B
		
	
	
	
		
			Groff
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			839 B
		
	
	
	
		
			Groff
		
	
	
	
	
	
| .\" Copyright (C) The libssh2 project and its contributors.
 | |
| .\" SPDX-License-Identifier: BSD-3-Clause
 | |
| .TH libssh2_channel_forward_accept 3 "1 Jun 2007" "libssh2 0.15" "libssh2"
 | |
| .SH NAME
 | |
| libssh2_channel_forward_accept - accept a queued connection
 | |
| .SH SYNOPSIS
 | |
| .nf
 | |
| #include <libssh2.h>
 | |
| 
 | |
| LIBSSH2_CHANNEL *
 | |
| libssh2_channel_forward_accept(LIBSSH2_LISTENER *listener);
 | |
| .fi
 | |
| .SH DESCRIPTION
 | |
| \fIlistener\fP is a forwarding listener instance as returned by
 | |
| \fBlibssh2_channel_forward_listen_ex(3)\fP.
 | |
| .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.
 | |
| .SH SEE ALSO
 | |
| .BR libssh2_channel_forward_listen_ex(3)
 |