packer-cn/vendor/github.com/pkg/sftp
Chris Bednarski dbdb988634 Vendor all dependencies 2016-02-04 17:33:36 -08:00
..
examples Vendor all dependencies 2016-02-04 17:33:36 -08:00
server_standalone Vendor all dependencies 2016-02-04 17:33:36 -08:00
.gitignore Vendor all dependencies 2016-02-04 17:33:36 -08:00
.travis.yml Vendor all dependencies 2016-02-04 17:33:36 -08:00
CONTRIBUTORS Vendor all dependencies 2016-02-04 17:33:36 -08:00
LICENSE Vendor all dependencies 2016-02-04 17:33:36 -08:00
README.md Vendor all dependencies 2016-02-04 17:33:36 -08:00
attrs.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
attrs_stubs.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
attrs_unix.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
client.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
debug.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
packet.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
release.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
server.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
server_stubs.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
server_unix.go Vendor all dependencies 2016-02-04 17:33:36 -08:00
sftp.go Vendor all dependencies 2016-02-04 17:33:36 -08:00

README.md

sftp

The sftp package provides support for file system operations on remote ssh servers using the SFTP subsystem.

UNIX Build Status GoDoc

usage and examples

See godoc.org/github.com/pkg/sftp for examples and usage.

The basic operation of the package mirrors the facilities of the os package.

The Walker interface for directory traversal is heavily inspired by Keith Rarick's fs package.

roadmap

  • Currently all traffic with the server is serialized, this can be improved by allowing overlapping requests/responses.
  • There is way too much duplication in the Client methods. If there was an unmarshal(interface{}) method this would reduce a heap of the duplication.
  • Implement integration tests by talking directly to a real opensftp-server process. This shouldn't be too difficult to implement with a small refactoring to the sftp.NewClient method. These tests should be gated on an -sftp.integration test flag. in progress

contributing

We welcome pull requests, bug fixes and issue reports.

Before proposing a large change, first please discuss your change by raising an issue.