Page 1 of 1

How to resolve "none ice candidate not allowed"?

Posted: Thu Aug 20, 2020 7:29 am
by smonkey421
I used WebRTC for my application, in Chrome, it's run OK, 100% correct. But in CEF4Delphi,sometimes throw this error: none ice candidate not allowed, is there any way to resolve that?

Thanks very much!

Sorry, my English is poor.

Re: How to resolve "none ice candidate not allowed"?

Posted: Thu Aug 20, 2020 10:15 am
by salvadordf
Hi,

It's the first time I see that error but you can find some information about it if you seach for "None Ice Candidate not allowed" (with quotes) in Google.

https://docs.agora.io/en/faq/console_er ... s_in_offer

Re: How to resolve "none ice candidate not allowed"?

Posted: Fri Aug 21, 2020 1:22 am
by smonkey421
Thx for reply. I'll try to search

Re: How to resolve "none ice candidate not allowed"?

Posted: Fri Aug 21, 2020 5:09 pm
by dilfich
The example of the problem has never bothered anyone, it's better than overcoming the language barrier. Infa 100% ;)

Re: How to resolve "none ice candidate not allowed"?

Posted: Wed Aug 26, 2020 7:47 am
by smonkey421
Thx, my problem has been solved!

The reason is the following parameters, need use their default value:
Chromium1.WebRTCIPHandlingPolicy := hpDisableNonProxiedUDP;
Chromium1.WebRTCMultipleRoutes := STATE_DISABLED;
Chromium1.WebRTCNonproxiedUDP := STATE_DISABLED;

But I still need to test it. :D