]> git.eshelyaron.com Git - emacs.git/commitdiff
Document :shell-command in `make-network-process'
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 26 Jan 2017 18:41:56 +0000 (19:41 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 26 Jan 2017 18:46:27 +0000 (19:46 +0100)
* doc/lispref/processes.texi (Network): Document :shell-command.

* lisp/net/network-stream.el (open-network-stream): Document
the :shell-command parameter (bug#20651).

doc/lispref/processes.texi
lisp/net/network-stream.el

index 014a0aed9134fbbee41f6185760d4bee02e81f65..58e04a311a1ef2fe624efc40c90e6daa1dd75f72 100644 (file)
@@ -2414,6 +2414,14 @@ If non-@code{nil}, the host's capability string.
 The connection type: @samp{plain} or @samp{tls}.
 @end table
 
+@item :shell-command @var{string-or-nil}
+If the connection @code{type} is @code{shell}, this parameter will be
+interpreted as a format-spec string that will be executed to make the
+connection.  The specs available are @samp{%s} for the host name and
+@samp{%p} for the port number.  For instance, if you want to first ssh
+to @samp{gateway} before making a plain connection, then this
+parameter could be something like @samp{ssh gateway nc %s %p}.
+
 @end table
 
 @end defun
index 93e1bae5fc208daa478c2022e51ade602da90c4b..bf60eee673cce25319702d9bded0eb6678d739a7 100644 (file)
@@ -139,6 +139,10 @@ a greeting from the server.
 :nowait, if non-nil, says the connection should be made
 asynchronously, if possible.
 
+:shell-command is a format-spec string that can be used if :type
+is `shell'.  It has two specs, %s for host and %p for port
+number.  Example: \"ssh gateway nc %s %p\".
+
 :tls-parameters is a list that should be supplied if you're
 opening a TLS connection.  The first element is the TLS
 type (either `gnutls-x509pki' or `gnutls-anon'), and the