Add log on createRecvTransport
This commit is contained in:
parent
b64c49c1cd
commit
d67debc70b
20
app.js
20
app.js
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user