mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 15:02:19 +00:00
Disable Trickle ICE
This commit is contained in:
parent
7d8c16fbb7
commit
099fb8e203
@ -154,12 +154,16 @@ func newPeerHandler(localSdpChan chan webrtc.SessionDescription, remoteSdp struc
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sets the LocalDescription, and starts our UDP listeners
|
// Sets the LocalDescription
|
||||||
|
// Using GatheringCompletePromise disable trickle ICE
|
||||||
|
// FIXME: https://github.com/pion/webrtc/wiki/Release-WebRTC@v3.0.0
|
||||||
|
gatherComplete := webrtc.GatheringCompletePromise(peerConnection)
|
||||||
if err = peerConnection.SetLocalDescription(answer); err != nil {
|
if err = peerConnection.SetLocalDescription(answer); err != nil {
|
||||||
log.Println("Failed to set local description", err)
|
log.Println("Failed to set local description", err)
|
||||||
localSdpChan <- webrtc.SessionDescription{}
|
localSdpChan <- webrtc.SessionDescription{}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
<-gatherComplete
|
||||||
|
|
||||||
// Send answer to client
|
// Send answer to client
|
||||||
localSdpChan <- answer
|
localSdpChan <- answer
|
||||||
|
Loading…
Reference in New Issue
Block a user