Avneet Singh
Avneet Singh

Reputation: 55

Remote connection using SwiftNIO SSH

I am working on a solution that would Read/Write Server files from remote gateway system to the local storage of iOS device using SwiftNIO SSH. This way I would be able to execute shell commands. I checked in Swift's website but couldn't find specific implementation:

https://swift.org/blog/swiftnio-ssh/

How should I proceed or is there any other workaround?

Upvotes: 0

Views: 1772

Answers (1)

Lukasa
Lukasa

Reputation: 15548

The implementation is here: https://github.com/apple/swift-nio-ssh. There are some examples in the repository.

Upvotes: 0

Related Questions