Lines Matching full:path

88           "desc": "<p>Multiple functions can fail due to certificate errors that are reported by\nOpenSSL. In such a case, the function provides an <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error\" class=\"type\">&lt;Error&gt;</a> via its callback that\nhas the property <code>code</code> which can take one of the following values:</p>\n<!--\nvalues are taken from src/crypto/crypto_common.cc\ndescription are taken from deps/openssl/openssl/crypto/x509/x509_txt.c\n-->\n<ul>\n<li><code>'UNABLE_TO_GET_ISSUER_CERT'</code>: Unable to get issuer certificate.</li>\n<li><code>'UNABLE_TO_GET_CRL'</code>: Unable to get certificate CRL.</li>\n<li><code>'UNABLE_TO_DECRYPT_CERT_SIGNATURE'</code>: Unable to decrypt certificate's\nsignature.</li>\n<li><code>'UNABLE_TO_DECRYPT_CRL_SIGNATURE'</code>: Unable to decrypt CRL's signature.</li>\n<li><code>'UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY'</code>: Unable to decode issuer public key.</li>\n<li><code>'CERT_SIGNATURE_FAILURE'</code>: Certificate signature failure.</li>\n<li><code>'CRL_SIGNATURE_FAILURE'</code>: CRL signature failure.</li>\n<li><code>'CERT_NOT_YET_VALID'</code>: Certificate is not yet valid.</li>\n<li><code>'CERT_HAS_EXPIRED'</code>: Certificate has expired.</li>\n<li><code>'CRL_NOT_YET_VALID'</code>: CRL is not yet valid.</li>\n<li><code>'CRL_HAS_EXPIRED'</code>: CRL has expired.</li>\n<li><code>'ERROR_IN_CERT_NOT_BEFORE_FIELD'</code>: Format error in certificate's notBefore\nfield.</li>\n<li><code>'ERROR_IN_CERT_NOT_AFTER_FIELD'</code>: Format error in certificate's notAfter\nfield.</li>\n<li><code>'ERROR_IN_CRL_LAST_UPDATE_FIELD'</code>: Format error in CRL's lastUpdate field.</li>\n<li><code>'ERROR_IN_CRL_NEXT_UPDATE_FIELD'</code>: Format error in CRL's nextUpdate field.</li>\n<li><code>'OUT_OF_MEM'</code>: Out of memory.</li>\n<li><code>'DEPTH_ZERO_SELF_SIGNED_CERT'</code>: Self signed certificate.</li>\n<li><code>'SELF_SIGNED_CERT_IN_CHAIN'</code>: Self signed certificate in certificate chain.</li>\n<li><code>'UNABLE_TO_GET_ISSUER_CERT_LOCALLY'</code>: Unable to get local issuer certificate.</li>\n<li><code>'UNABLE_TO_VERIFY_LEAF_SIGNATURE'</code>: Unable to verify the first certificate.</li>\n<li><code>'CERT_CHAIN_TOO_LONG'</code>: Certificate chain too long.</li>\n<li><code>'CERT_REVOKED'</code>: Certificate revoked.</li>\n<li><code>'INVALID_CA'</code>: Invalid CA certificate.</li>\n<li><code>'PATH_LENGTH_EXCEEDED'</code>: Path length constraint exceeded.</li>\n<li><code>'INVALID_PURPOSE'</code>: Unsupported certificate purpose.</li>\n<li><code>'CERT_UNTRUSTED'</code>: Certificate not trusted.</li>\n<li><code>'CERT_REJECTED'</code>: Certificate rejected.</li>\n<li><code>'HOSTNAME_MISMATCH'</code>: Hostname mismatch.</li>\n</ul>",
1433 "textRaw": "`path` {string} Creates Unix socket connection to path. If this option is specified, `host` and `port` are ignored.",
1434 "name": "path",
1436 "desc": "Creates Unix socket connection to path. If this option is specified, `host` and `port` are ignored."
1439 "textRaw": "`socket` {stream.Duplex} Establish secure connection on a given socket rather than creating a new socket. Typically, this is an instance of [`net.Socket`][], but any `Duplex` stream is allowed. If this option is specified, `path`, `host`, and `port` are ignored, except for certificate validation. Usually, a socket is already connected when passed to `tls.connect()`, but it can be connected later. Connection/disconnection/destruction of `socket` is the user's responsibility; calling `tls.connect()` will not cause `net.connect()` to be called.",
1442 "desc": "Establish secure connection on a given socket rather than creating a new socket. Typically, this is an instance of [`net.Socket`][], but any `Duplex` stream is allowed. If this option is specified, `path`, `host`, and `port` are ignored, except for certificate validation. Usually, a socket is already connected when passed to `tls.connect()`, but it can be connected later. Connection/disconnection/destruction of `socket` is the user's responsibility; calling `tls.connect()` will not cause `net.connect()` to be called."
1549 "textRaw": "`tls.connect(path[, options][, callback])`",
1567 "textRaw": "`path` {string} Default value for `options.path`.",
1568 "name": "path",
1570 "desc": "Default value for `options.path`."
1587 "desc": "<p>Same as <a href=\"#tlsconnectoptions-callback\"><code>tls.connect()</code></a> except that <code>path</code> can be provided\nas an argument instead of an option.</p>\n<p>A path option, if specified, will take precedence over the path argument.</p>"