From 551a0c855b689cb959ff2a6ad2f5fcb1bba407d0 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Thu, 13 Oct 2011 22:23:48 +0200 Subject: server: ssh_bind_accept_fd This function will not call accept() but use function parameter instead --- include/libssh/server.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'include/libssh/server.h') diff --git a/include/libssh/server.h b/include/libssh/server.h index af57f2f3..9ad53e42 100644 --- a/include/libssh/server.h +++ b/include/libssh/server.h @@ -224,6 +224,21 @@ LIBSSH_API void ssh_bind_fd_toaccept(ssh_bind ssh_bind_o); */ LIBSSH_API int ssh_bind_accept(ssh_bind ssh_bind_o, ssh_session session); +/** + * @brief Accept an incoming ssh connection on the given file descriptor + * and initialize the session. + * + * @param ssh_bind_o The ssh server bind to accept a connection. + * @param session A preallocated ssh session + * @param fd A file descriptor of an already established TCP + * inbound connection + * @see ssh_new + * @see ssh_bind_accept + * @return SSH_OK when a connection is established + */ +LIBSSH_API int ssh_bind_accept_fd(ssh_bind ssh_bind_o, ssh_session session, + socket_t fd); + /** * @brief Handles the key exchange and set up encryption * -- cgit