Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for ice #87

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Fix for ice #87

wants to merge 4 commits into from

Conversation

ashar02
Copy link
Contributor

@ashar02 ashar02 commented Apr 29, 2019

Fix for domain name incase of server side ice candidate. Resolved domain name to ip address.

@zevarito
Copy link
Owner

Hi @ashar02, code looks good, wonder why this needs to be executed all the time instead of being optional somehow. Can you explain me high level the case/s when this needs to be applied to get more context?

@ashar02
Copy link
Contributor Author

ashar02 commented Apr 29, 2019

It runs on answer sdp's ice candidates. Normally we set ip address in licode_config.js. But different deployments use domain name as well. When domain name comes in ice candidate then licode's web (javascript) works perfectly but in iOS it fails. So I resolve the domain name with ip and pass it further to work in this environment. Good thing about domain name to ip resolve is that if you pass ip address to this method then it returns same ip address immediately but if you pass domain then it returns its associated ip address. So I do not need it to check whether its ip or domain because at the end in any case it returns me ip address.

@zevarito
Copy link
Owner

When domain name comes in ice candidate then licode's web (javascript) works perfectly but in iOS it fails

You mean always fail?
Is it when libjingle parses ICE candidates with domain name or is it a Licode's failure?
If by specification ICE candidate parsers should support both ip and domain, I'd say is better to keep this functionality as optional to help as workaround no matter which endpoint is causing the trouble, but try to be tied to both specifications, webrtc and licode.

@ashar02
Copy link
Contributor Author

ashar02 commented Apr 30, 2019

Yes in case of domain name it always fails.
Its libjingle issue. Optional mean put this code in conditional compilation and whoever needs this should enable it by flag. Right?

@zevarito
Copy link
Owner

zevarito commented Apr 30, 2019 via email

@ashar02
Copy link
Contributor Author

ashar02 commented Sep 27, 2019

Please review.

@zevarito
Copy link
Owner

zevarito commented Oct 2, 2019

@ashar02 That's cool, just added really small comments on code style. Perhaps is good to document somewhere about RESOLVE_DOMAIN_INTO_IP, dunno if just troubleshoot wiki page or if you found a good place on API documentation, I think that's it. Let me know when I can merge. Thank you.

@ashar02
Copy link
Contributor Author

ashar02 commented Oct 7, 2019

  • Ice is failing because in Licode configuration you set domain instead of IP. Current version of PodRTC (m65) does not support domain name in ice candidate. To work around this limitation, go into the file ECClient.m and uncomment the line #define RESOLVE_DOMAIN_INTO_IP. It will replace the domain name with its associated IP address.

@zevarito
Copy link
Owner

zevarito commented Oct 7, 2019

@ashar02 I've not release new PodRTC version in ages, please point me which version of webrtc would be nice to build.

@ashar02
Copy link
Contributor Author

ashar02 commented Oct 8, 2019

@zevarito so far I got the chance to compile and use m72. I was facing the problem in rtsp streams and this ice candidate issue in m65. These both are fixed in m72. Also, do not forgot to enable VP9 when you compile the framework. And I think bitcode is also supported in this branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants