summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFarrin Reid <blakmatrix@gmail.com>2012-12-14 17:00:13 -0800
committerFedor Indutny <fedor@indutny.com>2014-04-24 10:14:48 +0400
commit3950024c2f54514916cb6e9fd5aec280a8823d3c (patch)
tree7941f665fe813714b2ba619ee1061c4ae2ec5c98
parent89e88e96df551d070ca35576e7063f2a338d340a (diff)
downloadandroid-node-v8-3950024c2f54514916cb6e9fd5aec280a8823d3c.tar.gz
android-node-v8-3950024c2f54514916cb6e9fd5aec280a8823d3c.tar.bz2
android-node-v8-3950024c2f54514916cb6e9fd5aec280a8823d3c.zip
doc: tls: added path property to tls.connect
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 <fedor@indutny.com>
-rw-r--r--doc/api/tls.markdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api/tls.markdown b/doc/api/tls.markdown
index 0e74aa4081..8e00c6378e 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.