Skip to content

Commit f7db525

Browse files
committed
squash! address @lpinca's suggestion
1 parent 2dc7c14 commit f7db525

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

doc/api/net.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,13 @@ by the OS through sysctl settings such as `tcp_max_syn_backlog` and `somaxconn`
185185
on 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

194196
One of the most common errors raised when listening is `EADDRINUSE`.
195197
This happens when another server is already listening on the requested

doc/api/tls.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff 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

10001002
The `tls.createSecureContext()` method creates a credentials object.
10011003

0 commit comments

Comments
 (0)