Home
last modified time | relevance | path

Searched refs:rstCode (Results 1 – 15 of 15) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-client-stream-destroy-before-connect.js46 assert.strictEqual(req.rstCode, NGHTTP2_INTERNAL_ERROR);
47 assert.strictEqual(req.rstCode, NGHTTP2_INTERNAL_ERROR);
Dtest-http2-propagate-session-destroy-code.js28 assert.strictEqual(stream.rstCode, destroyCode);
48 assert.strictEqual(stream.rstCode, destroyCode);
Dtest-http2-too-many-headers.js29 assert.strictEqual(req.rstCode, NGHTTP2_ENHANCE_YOUR_CALM);
Dtest-http2-too-large-headers.js27 assert.strictEqual(req.rstCode, NGHTTP2_ENHANCE_YOUR_CALM);
Dtest-http2-server-rst-before-respond.js32 assert.strictEqual(h2.constants.NGHTTP2_NO_ERROR, req.rstCode);
Dtest-h2-large-header-cause-client-to-hangup.js31 assert.strictEqual(stream.rstCode, NGHTTP2_CANCEL);
Dtest-http2-respond-file-fd-invalid.js45 assert.strictEqual(req.rstCode, NGHTTP2_INTERNAL_ERROR);
Dtest-http2-connect-method-extended.js33 assert.strictEqual(req.rstCode, 0);
Dtest-http2-client-upload-reject.js24 assert.strictEqual(stream.rstCode, 0);
Dtest-http2-server-rst-stream.js54 assert.strictEqual(req.rstCode, test[0]);
Dtest-http2-options-max-reserved-streams.js39 assert.strictEqual(pushedStream.rstCode, 8);
Dtest-http2-client-rststream-before-connect.js54 assert.strictEqual(req.rstCode, closeCode);
Dtest-http2-client-destroy.js297 assert.strictEqual(stream.rstCode, h2.constants.NGHTTP2_CANCEL);
/third_party/node/lib/internal/http2/
Dcore.js1910 state.rstCode = code;
1979 rstCode: NGHTTP2_NO_ERROR,
2093 get rstCode() { getter in Http2Stream
2094 return this[kState].rstCode;
2320 let code = this.closed ? this.rstCode : sessionCode;
/third_party/node/doc/api/
Dhttp2.md1086 property will be `true` and the `http2stream.rstCode` property will specify the
1113 the `http2stream.rstCode` property. If the code is any value other than
1319 #### `http2stream.rstCode`