-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https: defines maxHeadersCount in the constructor
In Refs, http.Server's maxHeadersCount field was defined in the constructor to make hidden class stable and so on. Also in https.Server, we can use maxHeadersCount the same as http via connectionListener. So, defines it in the constructor and documentation. Refs: #9116 PR-URL: #20359 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
- Loading branch information
Showing
3 changed files
with
82 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const fixtures = require('../common/fixtures'); | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
||
const assert = require('assert'); | ||
const https = require('https'); | ||
|
||
const serverOptions = { | ||
key: fixtures.readKey('agent1-key.pem'), | ||
cert: fixtures.readKey('agent1-cert.pem') | ||
}; | ||
|
||
let requests = 0; | ||
let responses = 0; | ||
|
||
const headers = {}; | ||
const N = 2000; | ||
for (let i = 0; i < N; ++i) { | ||
headers[`key${i}`] = i; | ||
} | ||
|
||
const maxAndExpected = [ // for server | ||
[50, 50], | ||
[1500, 1500], | ||
[0, N + 2] // Host and Connection | ||
]; | ||
let max = maxAndExpected[requests][0]; | ||
let expected = maxAndExpected[requests][1]; | ||
|
||
const server = https.createServer(serverOptions, common.mustCall((req, res) => { | ||
assert.strictEqual(Object.keys(req.headers).length, expected); | ||
if (++requests < maxAndExpected.length) { | ||
max = maxAndExpected[requests][0]; | ||
expected = maxAndExpected[requests][1]; | ||
server.maxHeadersCount = max; | ||
} | ||
res.writeHead(200, headers); | ||
res.end(); | ||
}, 3)); | ||
server.maxHeadersCount = max; | ||
|
||
server.listen(0, common.mustCall(() => { | ||
const maxAndExpected = [ // for client | ||
[20, 20], | ||
[1200, 1200], | ||
[0, N + 3] // Connection, Date and Transfer-Encoding | ||
]; | ||
const doRequest = common.mustCall(() => { | ||
const max = maxAndExpected[responses][0]; | ||
const expected = maxAndExpected[responses][1]; | ||
const req = https.request({ | ||
port: server.address().port, | ||
headers: headers, | ||
rejectUnauthorized: false | ||
}, (res) => { | ||
assert.strictEqual(Object.keys(res.headers).length, expected); | ||
res.on('end', () => { | ||
if (++responses < maxAndExpected.length) { | ||
doRequest(); | ||
} else { | ||
server.close(); | ||
} | ||
}); | ||
res.resume(); | ||
}); | ||
req.maxHeadersCount = max; | ||
req.end(); | ||
}, 3); | ||
doRequest(); | ||
})); |