| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 398261f commit c39d5fc
5 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6615,7 +6615,7 @@ See the [list of SSL OP Flags][] for details. | |||
| 6615 | 6615 | </tr> | |
| 6616 | 6616 | <tr> | |
| 6617 | 6617 | <td><code>SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS</code></td> | |
| 6618 | - <td>Instructs OpenSSL to disable a SSL 3.0/TLS 1.0 vulnerability | ||
| 6618 | + <td>Instructs OpenSSL to disable an SSL 3.0/TLS 1.0 vulnerability | ||
| 6619 | 6619 | workaround added in OpenSSL 0.9.6d.</td> | |
| 6620 | 6620 | </tr> | |
| 6621 | 6621 | <tr> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1513,7 +1513,7 @@ changes: | |||
| 1513 | 1513 | - version: v12.0.0 | |
| 1514 | 1514 | pr-url: https://github.com/nodejs/node/pull/25605 | |
| 1515 | 1515 | description: The default behavior will return a 431 Request Header | |
| 1516 | - Fields Too Large if a HPE_HEADER_OVERFLOW error occurs. | ||
| 1516 | + Fields Too Large if an HPE_HEADER_OVERFLOW error occurs. | ||
| 1517 | 1517 | - version: v9.4.0 | |
| 1518 | 1518 | pr-url: https://github.com/nodejs/node/pull/17672 | |
| 1519 | 1519 | description: The `rawPacket` is the current buffer that just parsed. Adding | |
@@ -1539,8 +1539,8 @@ This event is guaranteed to be passed an instance of the {net.Socket} class, | |||
| 1539 | 1539 | a subclass of {stream.Duplex}, unless the user specifies a socket | |
| 1540 | 1540 | type other than {net.Socket}. | |
| 1541 | 1541 | ||
| 1542 | - Default behavior is to try close the socket with a HTTP '400 Bad Request', | ||
| 1543 | - or a HTTP '431 Request Header Fields Too Large' in the case of a | ||
| 1542 | + Default behavior is to try close the socket with an HTTP '400 Bad Request', | ||
| 1543 | + or an HTTP '431 Request Header Fields Too Large' in the case of an | ||
| 1544 | 1544 | [`HPE_HEADER_OVERFLOW`][] error. If the socket is not writable or headers | |
| 1545 | 1545 | of the current attached [`http.ServerResponse`][] has been sent, it is | |
| 1546 | 1546 | immediately destroyed. | |
@@ -2710,7 +2710,7 @@ response.writeInformation(110, { 'X-Progress': '50%' }); | |||
| 2710 | 2710 | added: v10.0.0 | |
| 2711 | 2711 | --> | |
| 2712 | 2712 | ||
| 2713 | - Sends a HTTP/1.1 102 Processing message to the client, indicating that | ||
| 2713 | + Sends an HTTP/1.1 102 Processing message to the client, indicating that | ||
| 2714 | 2714 | the request body should be sent. | |
| 2715 | 2715 | ||
| 2716 | 2716 | ## Class: `http.IncomingMessage` | |
@@ -3693,7 +3693,7 @@ changes: | |||
| 3693 | 3693 | `readableHighWaterMark` and `writableHighWaterMark`. This affects | |
| 3694 | 3694 | `highWaterMark` property of both `IncomingMessage` and `ServerResponse`. | |
| 3695 | 3695 | **Default:** See [`stream.getDefaultHighWaterMark()`][]. | |
| 3696 | - * `insecureHTTPParser` {boolean} If set to `true`, it will use a HTTP parser | ||
| 3696 | + * `insecureHTTPParser` {boolean} If set to `true`, it will use an HTTP parser | ||
| 3697 | 3697 | with leniency flags enabled. Using the insecure parser should be avoided. | |
| 3698 | 3698 | See [`--insecure-http-parser`][] for more information. | |
| 3699 | 3699 | **Default:** `false`. | |
@@ -4004,7 +4004,7 @@ changes: | |||
| 4004 | 4004 | request to. **Default:** `'localhost'`. | |
| 4005 | 4005 | * `hostname` {string} Alias for `host`. To support [`url.parse()`][], | |
| 4006 | 4006 | `hostname` will be used if both `host` and `hostname` are specified. | |
| 4007 | - * `insecureHTTPParser` {boolean} If set to `true`, it will use a HTTP parser | ||
| 4007 | + * `insecureHTTPParser` {boolean} If set to `true`, it will use an HTTP parser | ||
| 4008 | 4008 | with leniency flags enabled. Using the insecure parser should be avoided. | |
| 4009 | 4009 | See [`--insecure-http-parser`][] for more information. | |
| 4010 | 4010 | **Default:** `false` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3960,7 +3960,7 @@ const server = createSecureServer( | |||
| 3960 | 3960 | ).listen(8000); | |
| 3961 | 3961 | ||
| 3962 | 3962 | function onRequest(req, res) { | |
| 3963 | - // Detects if it is a HTTPS request or HTTP/2 | ||
| 3963 | + // Detects if it is an HTTPS request or HTTP/2 | ||
| 3964 | 3964 | const { socket: { alpnProtocol } } = req.httpVersion === '2.0' ? | |
| 3965 | 3965 | req.stream.session : req; | |
| 3966 | 3966 | res.writeHead(200, { 'content-type': 'application/json' }); | |
@@ -3984,7 +3984,7 @@ const server = createSecureServer( | |||
| 3984 | 3984 | ).listen(4443); | |
| 3985 | 3985 | ||
| 3986 | 3986 | function onRequest(req, res) { | |
| 3987 | - // Detects if it is a HTTPS request or HTTP/2 | ||
| 3987 | + // Detects if it is an HTTPS request or HTTP/2 | ||
| 3988 | 3988 | const { socket: { alpnProtocol } } = req.httpVersion === '2.0' ? | |
| 3989 | 3989 | req.stream.session : req; | |
| 3990 | 3990 | res.writeHead(200, { 'content-type': 'application/json' }); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -400,7 +400,7 @@ changes: | |||
| 400 | 400 | ||
| 401 | 401 | The module compile cache can be enabled either using the [`module.enableCompileCache()`][] | |
| 402 | 402 | method or the [`NODE_COMPILE_CACHE=dir`][] environment variable. After it is enabled, | |
| 403 | - whenever Node.js compiles a CommonJS, a ECMAScript Module, or a TypeScript module, it will | ||
| 403 | + whenever Node.js compiles a CommonJS, an ECMAScript Module, or a TypeScript module, it will | ||
| 404 | 404 | use on-disk [V8 code cache][] persisted in the specified directory to speed up the compilation. | |
| 405 | 405 | This may slow down the first load of a module graph, but subsequent loads of the same module | |
| 406 | 406 | graph may get a significant speedup if the contents of the modules do not change. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1212,7 +1212,7 @@ added: v9.9.0 | |||
| 1212 | 1212 | --> | |
| 1213 | 1213 | ||
| 1214 | 1214 | * Returns: {Buffer|undefined} The latest `Finished` message that has been | |
| 1215 | - sent to the socket as part of a SSL/TLS handshake, or `undefined` if | ||
| 1215 | + sent to the socket as part of an SSL/TLS handshake, or `undefined` if | ||
| 1216 | 1216 | no `Finished` message has been sent yet. | |
| 1217 | 1217 | ||
| 1218 | 1218 | As the `Finished` messages are message digests of the complete handshake | |
@@ -1355,7 +1355,7 @@ added: v9.9.0 | |||
| 1355 | 1355 | --> | |
| 1356 | 1356 | ||
| 1357 | 1357 | * Returns: {Buffer|undefined} The latest `Finished` message that is expected | |
| 1358 | - or has actually been received from the socket as part of a SSL/TLS handshake, | ||
| 1358 | + or has actually been received from the socket as part of an SSL/TLS handshake, | ||
| 1359 | 1359 | or `undefined` if there is no `Finished` message so far. | |
| 1360 | 1360 | ||
| 1361 | 1361 | As the `Finished` messages are message digests of the complete handshake | |
| Back | FazBrowse Home | New Git URL |
0 commit comments