diff options
| author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2015-11-23 07:34:19 +0300 |
|---|---|---|
| committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2015-11-23 07:34:19 +0300 |
| commit | 3b275a136c9f71c3add702caf612c425b1e9fae2 (patch) | |
| tree | dea20ddb8ef12c8e3f54413db496fbbcb4844a2f /modules/ssh | |
| parent | README (Features): Update (diff) | |
| download | guile-ssh-3b275a136c9f71c3add702caf612c425b1e9fae2.tar.gz | |
modules/ssh/sftp.scm: Add the module commentary
Diffstat (limited to 'modules/ssh')
| -rw-r--r-- | modules/ssh/sftp.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/ssh/sftp.scm b/modules/ssh/sftp.scm index 101b95e..2192ee2 100644 --- a/modules/ssh/sftp.scm +++ b/modules/ssh/sftp.scm @@ -20,6 +20,33 @@ ;;; Commentary: +;; This module contains SFTP API procedures. +;; +;; The module exports: +;; sftp-session? +;; make-sftp-session +;; sftp-init +;; sftp-get-session +;; sftp-get-error +;; sftp-mkdir +;; sftp-rmdir +;; sftp-mv +;; sftp-symlink +;; sftp-readlink +;; sftp-chmod +;; sftp-unlink +;; %make-sftp-session +;; %sftp-init +;; sftp-open +;; sftp-file? +;; call-with-remote-input-file +;; call-with-remote-output-file +;; with-input-from-remote-file +;; with-output-to-remote-file +;; +;; See the Info documentation for the detailed description of these +;; procedures. + ;;; Code: (define-module (ssh sftp) |
