We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b55fa58 commit 3dfb684Copy full SHA for 3dfb684
Sources/LiveKit/Extensions/RTCConfiguration.swift
@@ -19,9 +19,6 @@ import WebRTC
19
20
extension RTCConfiguration {
21
22
- public static let defaultIceServers = ["stun:stun.l.google.com:19302",
23
- "stun:stun1.l.google.com:19302"]
24
-
25
public static func liveKitDefault() -> RTCConfiguration {
26
27
let result = DispatchQueue.webRTC.sync { RTCConfiguration() }
@@ -31,8 +28,6 @@ extension RTCConfiguration {
31
28
result.tcpCandidatePolicy = .enabled
32
29
result.iceTransportPolicy = .all
33
30
34
- result.iceServers = [ DispatchQueue.webRTC.sync { RTCIceServer(urlStrings: defaultIceServers) } ]
35
36
return result
37
}
38
0 commit comments