dartssh2 icon indicating copy to clipboard operation
dartssh2 copied to clipboard

SSH and SFTP client written in pure Dart, aiming to be feature-rich as well as easy to use.

Results 66 dartssh2 issues
Sort by recently updated
recently updated
newest added
trafficstars

Not working on web Can i kow anything we have to do to run on web

when the remote reboot or shutdown the done handler not working. `await session.done; client.close(); await client.done;` the error is. [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: SSHStateError(Transport is closed) #0 SSHTransport.sendPacket (package:dartssh2/src/ssh_transport.dart:183:7) #1 SSHClient._sendMessage...

The download speed is about 2m/s when SFTP donwload large file

Hi, I connected to SSH Local port forwarding in Flutter App using dartssh2. It is working fine for small HTTPS api responses but it is keep waiting in case on...

Hi ! Is there a way to write from the code to the shell and not the IDE terminal I'm implementing the code form the shell example and it works...

I modified [ssh_socket_js.dart](https://github.com/14h4i/dartssh2/blob/master/lib/src/socket/ssh_socket_js.dart) and it maybe work for web. However, I am having problems in: https://github.com/TerminalStudio/dartssh2/blob/ae5447913eb92478f186a8db1a890826a1456311/lib/src/ssh_transport.dart#L635-L648 and https://github.com/TerminalStudio/dartssh2/blob/ae5447913eb92478f186a8db1a890826a1456311/lib/src/ssh_client.dart#L489-L533 When run web with after modified, there is a case `messageId` return...

I can not change UDP Port....

I m using below code to upload data . May i know where to add onProgress call . BTW i m using linux platform. client = SSHClient( await SSHSocket.connect('$ip', 22),...

Currently we have the declaration ```dart class SftpFileOpenMode { ... operator |(SftpFileOpenMode other) => SftpFileOpenMode._(flag | other.flag); } ``` The operator overload is declared without providing the desired return type...

Do we have feature to generate SSH keys similar to ssh-keygen? If not, do we have any plan for it?