Lines Matching refs:stream
17 // - every other NGHTTP2 error from binding (should emit stream error)
34 type: 'stream'
46 server.on('stream', common.mustCall((stream, headers) => {
52 if (currentError.type === 'stream') {
53 stream.session.on('error', errorMustNotCall);
54 stream.on('error', errorMustCall);
56 stream.session.once('error', errorMustCall);
57 stream.on('error', errorMustNotCall);
60 stream.additionalHeaders({ ':status': 100 });