Eugeny / russh

Rust SSH client & server library
https://docs.rs/russh
870 stars 91 forks source link

Support for SCP protocol #287

Open XVilka opened 3 months ago

XVilka commented 3 months ago

There exists russh-sftp crate for providing SFTP support on top of russh, but many services still do not support SFTP have have it disabled, while still supporting legacy SCP protocol. Int the Rust ecosystem, the only library that supports it seems to be ssh2: https://docs.rs/ssh2/latest/ssh2/#upload-a-file

Would be nice to support the same feature in russh as well.