On 13 October 2014 11:55, Martin Drašar <[email protected]> wrote:
>
> I have a program that uses fibers as a mean for parallelism and would
> like to use libssh2 in it. However, some of these functions seem more
> apt for thread-based parallelism. I have in mind functions using e.g.
> the BLOCK_ADJUST macros.
>
> So I just want to ask you, if the following approach I want to use is
> the correct one. Instead of calling libssh2_session_handshake I have
> this cycle that is basically BLOCK_ADJUST sans keepalive:
>
> while (socket not read or written to)
> {
>   session_startup(session, socket);
>   yield(); // Pass execution to another fiber
> }
>
> I ask, because the session_startup function is not exported into public API.

Using libssh2 in non-blocking mode you bypass BLOCK_ADJUST altogether.
Maybe something like this?

int rc;
while((rc = libssh2_session_startup(session, socket)) != LIBSSH2_ERROR_EAGAIN)
{
    yield();
}

Alex

-- 
Swish - Easy SFTP for Windows Explorer (http://www.swish-sftp.org)

_______________________________________________
libssh2-devel http://cool.haxx.se/cgi-bin/mailman/listinfo/libssh2-devel

Reply via email to