Home
last modified time | relevance | path

Searched refs:lastStreamID (Results 1 - 3 of 3) sorted by relevance

/third_party/node/lib/internal/http2/
H A Dcore.js666 function onGoawayData(code, lastStreamID, buf) {
671 code, lastStreamID);
675 state.goawayLastStreamID = lastStreamID;
677 session.emit('goaway', code, lastStreamID, buf);
846 // If the lastStreamID is set to <= 0, then the lastProcStreamID will
849 function submitGoaway(code, lastStreamID, opaqueData) {
854 this[kHandle].goaway(code, lastStreamID, opaqueData);
1505 goaway(code = NGHTTP2_NO_ERROR, lastStreamID = 0, opaqueData) {
1513 validateNumber(lastStreamID, 'lastStreamID');
[all...]
/third_party/node/src/
H A Dnode_http2.cc2723 int32_t lastStreamID, in Goaway()
2731 if (lastStreamID <= 0) in Goaway()
2732 lastStreamID = nghttp2_session_get_last_proc_stream_id(session_.get()); in Goaway()
2735 lastStreamID, code, data, len); in Goaway()
2748 int32_t lastStreamID = args[1]->Int32Value(context).ToChecked(); in Goaway() local
2755 session->Goaway(code, lastStreamID, opaque_data.data(), opaque_data.length()); in Goaway()
2722 Goaway(uint32_t code, int32_t lastStreamID, const uint8_t* data, size_t len) Goaway() argument
H A Dnode_http2.h590 void Goaway(uint32_t code, int32_t lastStreamID,

Completed in 15 milliseconds