Archived
2
0

add WebRTC timeouts.

This commit is contained in:
m1k1o 2021-02-15 15:42:10 +01:00
parent 595259b30c
commit 56b1aa92f4

View File

@ -5,6 +5,7 @@ import (
"fmt"
"io"
"strings"
"time"
"github.com/pion/interceptor"
"github.com/pion/webrtc/v3"
@ -98,6 +99,7 @@ func (manager *WebRTCManager) CreatePeer(id string, session types.Session) (stri
settings.SetEphemeralUDPPortRange(manager.config.EphemeralMin, manager.config.EphemeralMax)
settings.SetNAT1To1IPs(manager.config.NAT1To1IPs, webrtc.ICECandidateTypeHost)
settings.SetICETimeouts(6 * time.Second, 6 * time.Second, 3 * time.Second)
settings.SetSRTPReplayProtectionWindow(512)
// Create MediaEngine based off sdp