async-ssh2
async-ssh2 copied to clipboard
Hello, I'm running a remote command and I'm wondering how to obtain the exit_signal and error_message when calling channel.exit_signal(). Would you have any examples?
Please don't deprecate this crate. This one is more suitable for me, compared with async-ssh2-lite. Can I ask for an enhancement to support ssh via Jumpbox? This crate is already...
I saw that this package was deprecated a few days ago in favor of [async-ssh2-lite](https://github.com/bk-rs/async-ssh2-lite). Since I am using async-ssh2 I thought I had better check the other package out...
Looks like there is no way to read stream. ```rs channel .stream(0) .read_to_string(&mut channel_buffer) .map_err(|e| Error::msg(format!("Error reading result of work: {}", e)))?; ``` "Error reading result of work: would block"
I don't know for sure if this is a problem in reality, but in thinking about this problem space in wezterm, I think it might be. In wezterm we create...
Updates the requirements on [libssh2-sys](https://github.com/alexcrichton/ssh2-rs) to permit the latest version. Commits 346c27a Fix for ssh2-rs issue #273. 48e5130 fix sftp LIBSSH2_ERROR_EAGAIN f10329d Test errors are translated to IO Error kinds...