From 3950024c2f54514916cb6e9fd5aec280a8823d3c Mon Sep 17 00:00:00 2001 From: Farrin Reid Date: Fri, 14 Dec 2012 17:00:13 -0800 Subject: [PATCH] doc: tls: added path property to tls.connect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In tls.connect a unix socket connection to a path may be made in recent versions of node by specifying the value for the path property. Signed-off-by: Fedor Indutny --- doc/api/tls.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/api/tls.markdown b/doc/api/tls.markdown index 0e74aa40818..8e00c6378e7 100644 --- a/doc/api/tls.markdown +++ b/doc/api/tls.markdown @@ -290,6 +290,9 @@ Creates a new client connection to the given `port` and `host` (old API) or creating a new socket. If this option is specified, `host` and `port` are ignored. + - `path`: Creates unix socket connection to path. If this option is + specified, `host` and `port` are ignored. + - `pfx`: A string or `Buffer` containing the private key, certificate and CA certs of the client in PFX or PKCS12 format.