Correct way to free a session _and_ how to do so without blocking or timeout

2022-01-11 Thread Evan M via libssh2-devel
Hi all - apologies for the long email.. I want to make sure I'm explaining things clearly. I am working on a wrapper over libssh2 for the Rust programming language. Rust has RAII similar to C++ where resources for a struct / object are released when the struct is dropped (i.e. goes out of scope).

Re: Correct way to free a session _and_ how to do so without blocking or timeout

2022-02-06 Thread Evan M via libssh2-devel
Following up to see if anyone is willing to share their thoughts on any of these questions. Even a partial answer would be helpful to know whether I am thinking about this correctly. Thank you -Evan On Tue, Jan 11, 2022 at 10:55 PM Evan M wrote: > Hi all - apologies for the long email.. I want