Lines Matching refs:stream
17 // - every other NGHTTP2 error from binding (should emit stream error)
35 type: 'stream'
47 server.on('stream', common.mustCall((stream, headers) => {
53 if (currentError.type === 'stream') {
54 stream.session.on('error', errorMustNotCall);
55 stream.on('error', errorMustCall);
56 stream.on('error', common.mustCall(() => {
57 stream.destroy();
60 stream.session.once('error', errorMustCall);
61 stream.on('error', errorMustNotCall);
64 stream.respond();