File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -185,11 +185,13 @@ by the OS through sysctl settings such as `tcp_max_syn_backlog` and `somaxconn`
185185on Linux. The default value of this parameter is 511 (not 512).
186186
187187
188- * Note* : All [ ` net.Socket ` ] [ ] are set to ` SO_REUSEADDR ` (See [ socket(7)] [ ] for
189- details).
188+ * Note* :
190189
191- * Note* : The ` server.listen() ` method may be called multiple times. Each
192- subsequent call will * re-open* the server using the provided options.
190+ * All [ ` net.Socket ` ] [ ] are set to ` SO_REUSEADDR ` (See [ socket(7)] [ ] for
191+ details).
192+
193+ * The ` server.listen() ` method may be called multiple times. Each
194+ subsequent call will * re-open* the server using the provided options.
193195
194196One of the most common errors raised when listening is ` EADDRINUSE ` .
195197This happens when another server is already listening on the requested
Original file line number Diff line number Diff line change @@ -989,13 +989,15 @@ changes:
989989 * ` sessionIdContext ` {string} Optional opaque identifier used by servers to
990990 ensure session state is not shared between applications. Unused by clients.
991991
992- * Note* : [ ` tls.createServer() ` ] [ ] sets the default value of the
993- ` honorCipherOrder ` option to ` true ` , other APIs that create secure contexts
994- leave it unset.
992+ * Note* :
995993
996- * Note* : [ ` tls.createServer() ` ] [ ] uses a 128 bit truncated SHA1 hash value
997- generated from ` process.argv ` as the default value of the ` sessionIdContext `
998- option, other APIs that create secure contexts have no default value.
994+ * [ ` tls.createServer() ` ] [ ] sets the default value of the
995+ ` honorCipherOrder ` option to ` true ` , other APIs that create secure contexts
996+ leave it unset.
997+
998+ * [ ` tls.createServer() ` ] [ ] uses a 128 bit truncated SHA1 hash value
999+ generated from ` process.argv ` as the default value of the ` sessionIdContext `
1000+ option, other APIs that create secure contexts have no default value.
9991001
10001002The ` tls.createSecureContext() ` method creates a credentials object.
10011003
You can’t perform that action at this time.
0 commit comments