���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/parallel/ |
'use strict'; // Tests that calling unref() on Http2Session: // (1) Prevents it from keeping the process alive // (2) Doesn't crash const common = require('../common'); if (!common.hasCrypto) common.skip('missing crypto'); const http2 = require('http2'); const Countdown = require('../common/countdown'); const makeDuplexPair = require('../common/duplexpair'); const server = http2.createServer(); const { clientSide, serverSide } = makeDuplexPair(); const counter = new Countdown(3, () => server.unref()); // 'session' event should be emitted 3 times: // - the vanilla client // - the destroyed client // - manual 'connection' event emission with generic Duplex stream server.on('session', common.mustCallAtLeast((session) => { counter.dec(); session.unref(); }, 3)); server.listen(0, common.mustCall(() => { const port = server.address().port; // unref new client { const client = http2.connect(`http://localhost:${port}`); client.unref(); } // Unref destroyed client { const client = http2.connect(`http://localhost:${port}`); client.on('connect', common.mustCall(() => { client.destroy(); client.unref(); })); } // Unref destroyed client { const client = http2.connect(`http://localhost:${port}`, { createConnection: common.mustCall(() => clientSide) }); client.on('connect', common.mustCall(() => { client.destroy(); client.unref(); })); } })); server.emit('connection', serverSide);