summaryrefslogtreecommitdiff
path: root/modules/ssh
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2015-11-23 07:34:19 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2015-11-23 07:34:19 +0300
commit3b275a136c9f71c3add702caf612c425b1e9fae2 (patch)
treedea20ddb8ef12c8e3f54413db496fbbcb4844a2f /modules/ssh
parentREADME (Features): Update (diff)
downloadguile-ssh-3b275a136c9f71c3add702caf612c425b1e9fae2.tar.gz
modules/ssh/sftp.scm: Add the module commentary
Diffstat (limited to 'modules/ssh')
-rw-r--r--modules/ssh/sftp.scm27
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)