Commit 3a9f6339 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Reduce delays in RelayTest.

parent 25ce8ef6
...@@ -125,10 +125,19 @@ func ICEConfiguration() *webrtc.Configuration { ...@@ -125,10 +125,19 @@ func ICEConfiguration() *webrtc.Configuration {
} }
func RelayTest() (time.Duration, error) { func RelayTest() (time.Duration, error) {
conf := ICEConfiguration() conf := ICEConfiguration()
conf2 := *conf conf2 := *conf
conf2.ICETransportPolicy = webrtc.ICETransportPolicyRelay conf2.ICETransportPolicy = webrtc.ICETransportPolicyRelay
pc1, err := webrtc.NewPeerConnection(conf2)
var s webrtc.SettingEngine
s.SetHostAcceptanceMinWait(0)
s.SetSrflxAcceptanceMinWait(0)
s.SetPrflxAcceptanceMinWait(0)
s.SetRelayAcceptanceMinWait(0)
api := webrtc.NewAPI(webrtc.WithSettingEngine(s))
pc1, err := api.NewPeerConnection(conf2)
if err != nil { if err != nil {
return 0, err return 0, err
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment