Можно ли установить ограничение скорости / полосы пропускания для канала данных?
const pc = new RTCPeerConnection()
const dc = pc.createDataChannel('channel-name')
const offer = await pc.createOffer()
const maxUploadSpeed = 1 << 20 // 1 MiB
// change offer.sdp to set some speed limit
pc.setLocalDescription(offer)