Home
last modified time | relevance | path

Searched refs:maxSessionInvalidFrames (Results 1 – 8 of 8) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-max-invalid-frames.js14 const maxSessionInvalidFrames = 100; constant
15 const server = http2.createServer({ maxSessionInvalidFrames }); field
83 assert.ok(Math.abs(reqCount - maxSessionInvalidFrames) < 100,
85 ` maxSessionInvalidFrames option (${maxSessionInvalidFrames})`);
Dtest-http2-empty-frame-without-eof.js19 for (const maxSessionInvalidFrames of [0, 2]) {
21 maxSessionInvalidFrames field
27 if (maxSessionInvalidFrames) {
Dtest-http2-createsecureserver-options.js39 maxSessionInvalidFrames: [ property
Dtest-http2-createserver-options.js39 maxSessionInvalidFrames: [ property
Dtest-http2-reset-flood.js16 const server = http2.createServer({ maxSessionInvalidFrames: 100 }); property
/third_party/node/lib/internal/http2/
Dcore.js1058 if (isUint32(options.maxSessionInvalidFrames)) {
1061 uint32[0] = options.maxSessionInvalidFrames;
3100 if (options.maxSessionInvalidFrames !== undefined)
3101 validateUint32(options.maxSessionInvalidFrames, 'maxSessionInvalidFrames');
/third_party/node/doc/api/
Dhttp2.md2395 description: Added `maxSessionInvalidFrames` option with a default of 1000.
2463 * `maxSessionInvalidFrames` {integer} Sets the maximum number of invalid
2552 description: Added `maxSessionInvalidFrames` option with a default of 1000.
2617 * `maxSessionInvalidFrames` {integer} Sets the maximum number of invalid
Derrors.md1725 as specified through the `maxSessionInvalidFrames` option, has been exceeded.