Add log on createRecvTransport

This commit is contained in:
Sergiu Toma 2022-08-16 14:21:02 +03:00
parent b64c49c1cd
commit d67debc70b
1 changed files with 12 additions and 8 deletions

20
app.js
View File

@ -253,8 +253,8 @@ const createWebRtcTransportLayer = async (callId, callback) => {
preferUdp: true,
}
console.log('webRtcTransport_options', webRtcTransport_options);
console.log('router', router, '| router[callId]', router[callId]);
// console.log('webRtcTransport_options', webRtcTransport_options);
// console.log('router', router, '| router[callId]', router[callId]);
// https://mediasoup.org/documentation/v3/mediasoup/api/#router-createWebRtcTransport
let transport = await router[callId].createWebRtcTransport(webRtcTransport_options)
@ -270,15 +270,19 @@ const createWebRtcTransportLayer = async (callId, callback) => {
console.log('transport closed')
})
const params = {
id: transport.id,
iceParameters: transport.iceParameters,
iceCandidates: transport.iceCandidates,
dtlsParameters: transport.dtlsParameters,
}
console.log('params', params);
// send back to the client the following prameters
callback({
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#TransportOptions
params: {
id: transport.id,
iceParameters: transport.iceParameters,
iceCandidates: transport.iceCandidates,
dtlsParameters: transport.dtlsParameters,
}
params
})
return transport