-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http: add highWaterMark opt in http.createServer
Add highWaterMark option when creating a new HTTP server. This option will override the default (readable|writable) highWaterMark values on sockets created. Fixes: #46606 PR-URL: #47405 Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
- Loading branch information
1 parent
0ea6371
commit 7cef6aa
Showing
7 changed files
with
84 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
const { kHighWaterMark } = require('_http_outgoing'); | ||
|
||
const { getDefaultHighWaterMark } = require('internal/streams/state'); | ||
|
||
function listen(server) { | ||
server.listen(0, common.mustCall(() => { | ||
http.get({ | ||
port: server.address().port, | ||
}, (res) => { | ||
assert.strictEqual(res.statusCode, 200); | ||
res.resume().on('end', common.mustCall(() => { | ||
server.close(); | ||
})); | ||
}); | ||
})); | ||
} | ||
|
||
{ | ||
const server = http.createServer({ | ||
highWaterMark: getDefaultHighWaterMark() * 2, | ||
}, common.mustCall((req, res) => { | ||
assert.strictEqual(req._readableState.highWaterMark, getDefaultHighWaterMark() * 2); | ||
assert.strictEqual(res[kHighWaterMark], getDefaultHighWaterMark() * 2); | ||
res.statusCode = 200; | ||
res.end(); | ||
})); | ||
|
||
listen(server); | ||
} | ||
|
||
{ | ||
const server = http.createServer( | ||
common.mustCall((req, res) => { | ||
assert.strictEqual(req._readableState.highWaterMark, getDefaultHighWaterMark()); | ||
assert.strictEqual(res[kHighWaterMark], getDefaultHighWaterMark()); | ||
res.statusCode = 200; | ||
res.end(); | ||
}) | ||
); | ||
|
||
listen(server); | ||
} |