Home
last modified time | relevance | path

Searched refs:lastStreamID (Results 1 – 5 of 5) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-goaway-opaquedata.js24 client.once('goaway', common.mustCall((code, lastStreamID, buf) => {
26 assert.deepStrictEqual(lastStreamID, 1);
/third_party/node/lib/internal/http2/
Dcore.js636 function onGoawayData(code, lastStreamID, buf) { argument
641 code, lastStreamID);
645 state.goawayLastStreamID = lastStreamID;
647 session.emit('goaway', code, lastStreamID, buf);
818 function submitGoaway(code, lastStreamID, opaqueData) { argument
823 this[kHandle].goaway(code, lastStreamID, opaqueData);
1447 goaway(code = NGHTTP2_NO_ERROR, lastStreamID = 0, opaqueData) { argument
1457 validateNumber(lastStreamID, 'lastStreamID');
1459 const goawayFn = submitGoaway.bind(this, code, lastStreamID, opaqueData);
/third_party/node/src/
Dnode_http2.cc2594 int32_t lastStreamID, in Goaway() argument
2602 if (lastStreamID <= 0) in Goaway()
2603 lastStreamID = nghttp2_session_get_last_proc_stream_id(session_.get()); in Goaway()
2606 lastStreamID, code, data, len); in Goaway()
2619 int32_t lastStreamID = args[1]->Int32Value(context).ToChecked(); in Goaway() local
2626 session->Goaway(code, lastStreamID, opaque_data.data(), opaque_data.length()); in Goaway()
Dnode_http2.h588 void Goaway(uint32_t code, int32_t lastStreamID,
/third_party/node/doc/api/
Dhttp2.md199 * `lastStreamID` {number} The ID of the last stream the remote peer successfully
417 #### `http2session.goaway([code[, lastStreamID[, opaqueData]]])`
423 * `lastStreamID` {number} The numeric ID of the last processed `Http2Stream`