summaryrefslogtreecommitdiff
path: root/modules/ssh
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-10-30 12:36:04 +0400
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-10-30 12:36:04 +0400
commitef80c1f70453b6e52124a1f47b0aeef72e7a48c1 (patch)
tree07a4610261d06c1715544c35418c9ffbf1f57974 /modules/ssh
parentNEWS: Bump version to 0.10.1 (diff)
downloadguile-ssh-ef80c1f70453b6e52124a1f47b0aeef72e7a48c1.tar.gz
channel.scm (channel-send-eof!): New procedure
* modules/ssh/channel.scm (channel-send-eof!): New procedure. * libguile-ssh/channel-func.c (gssh_channel_send_eof_x): New procedure. * doc/api-channels.texi: Add description of 'channel-send-eof!'. * tests/client-server.scm ("channel-send-eof!"): New TC. * doc/version.texi, NEWS: Update.
Diffstat (limited to 'modules/ssh')
-rw-r--r--modules/ssh/channel.scm10
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/ssh/channel.scm b/modules/ssh/channel.scm
index 0dfd6a5..0fe4cb3 100644
--- a/modules/ssh/channel.scm
+++ b/modules/ssh/channel.scm
@@ -1,6 +1,6 @@
;;; channel.scm -- API for SSH channel manipulation.
-;; Copyright (C) 2013, 2014, 2015 Artyom V. Poptsov <poptsov.artyom@gmail.com>
+;; Copyright (C) 2013, 2014, 2015, 2016 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;
;; This file is a part of Guile-SSH.
;;
@@ -39,6 +39,7 @@
;; channel-set-stream!
;; channel-get-stream
;; channel-open?
+;; channel-send-eof!
;; channel-eof?
@@ -66,6 +67,7 @@
channel-get-session
channel-get-exit-status
channel-open?
+ channel-send-eof!
channel-eof?))
(define* (make-channel session #:optional (mode OPEN_BOTH))
@@ -114,6 +116,12 @@ channel, and the second value is a port number on which the connection was
issued."
(%channel-accept-forward session timeout))
+(define (channel-send-eof! channel)
+ "Send an end of file (EOF) on the CHANNEL. This action doesn't close the
+channel; you may still read from it but not write. Throw 'guile-ssh-error' on
+an error. Return value is undefined."
+ (%channel-send-eof! channel))
+
;;;