aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2018-10-09 15:36:03 -0700
committerAnna Henningsen <anna@addaleax.net>2018-10-12 14:52:12 -0700
commit846cc7e498426d19740331f1f3143afced5bae22 (patch)
treeecfe079e27a93a66cc38f0579006701fef207537 /doc
parent4d16d1ed344dd0ff91ae421dab64e44335c2e4e2 (diff)
downloadandroid-node-v8-846cc7e498426d19740331f1f3143afced5bae22.tar.gz
android-node-v8-846cc7e498426d19740331f1f3143afced5bae22.tar.bz2
android-node-v8-846cc7e498426d19740331f1f3143afced5bae22.zip
doc: describe SNI host name format
Ref: https://github.com/nodejs/node/pull/23329 PR-URL: https://github.com/nodejs/node/pull/23357 Refs: https://github.com/nodejs/node/pull/23329 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/tls.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 0cba4653e7..41d863df2f 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -894,7 +894,7 @@ changes:
protocol name. Passing an array is usually much simpler, e.g.
`['hello', 'world']`.
* `servername`: {string} Server name for the SNI (Server Name Indication) TLS
- extension.
+ extension. It must be a host name, and not an IP address.
* `checkServerIdentity(servername, cert)` {Function} A callback function
to be used (instead of the builtin `tls.checkServerIdentity()` function)
when checking the server's hostname (or the provided `servername` when