Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmark/http/check_invalid_header_char.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const common = require('../common.js');
const _checkInvalidHeaderChar = require('_http_common')._checkInvalidHeaderChar;
const { _checkInvalidHeaderChar } = require('internal/http/common');

const bench = common.createBenchmark(main, {
key: [
Expand Down
2 changes: 1 addition & 1 deletion benchmark/http/check_is_http_token.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const common = require('../common.js');
const _checkIsHttpToken = require('_http_common')._checkIsHttpToken;
const _checkIsHttpToken = require('internal/http/common')._checkIsHttpToken;

const bench = common.createBenchmark(main, {
key: [
Expand Down
23 changes: 23 additions & 0 deletions doc/api/deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,29 @@ Type: Runtime
internal mechanics of the `REPLServer` itself, and is therefore not
necessary in user space.

<a id="DEP00XX"></a>
### DEP00XX: `_http_*`, `_stream_*`, `_tls_*`

Type: Runtime

| Old | New |
|-----------------------|------------------------|
| `_http_agent` | `http.Agent` |
| `_http_client` | `http.ClientRequest` |
| `_http_common` | `http` (partial) |
| `_http_incoming` | `http.IncomingMessage` |
| `_http_outgoing` | `http.OutgoingMessage` |
| `_http_server` | `http.Server` |
| `_stream_duplex` | `stream.Duplex` |
| `_stream_passthrough` | `stream.PassThrough` |
| `_stream_readable` | `stream.Readable` |
| `_stream_transform` | `stream.Transform` |
| `_stream_wrap` | *N/A* |
| `_stream_writable` | `stream.Writable` |
| `_tls_common` | `tls` (partial) |
| `_tls_legacy` | `tls` |
| `_tls_wrap` | *N/A* |


[`Buffer.allocUnsafeSlow(size)`]: buffer.html#buffer_class_method_buffer_allocunsafeslow_size
[`Buffer.from(array)`]: buffer.html#buffer_class_method_buffer_from_array
Expand Down
Loading