servo/tests/wpt/web-platform-tests/webrtc/RTCQuicTransport-helper.js

10 lines
297 B
JavaScript

'use strict';
function makeQuicTransport(t, certificates) {
const iceTransport = new RTCIceTransport();
t.add_cleanup(() => iceTransport.stop());
const quicTransport = new RTCQuicTransport(iceTransport, certificates);
t.add_cleanup(() => quicTransport.stop());
return quicTransport;
}