-
Notifications
You must be signed in to change notification settings - Fork 54
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
base: master
Are you sure you want to change the base?
Fix for ice #87
Conversation
Merge latest code from zevarito repo
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? |
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. |
You mean always fail? |
Yes in case of domain name it always fails. |
well actually I was thinking some global setting on the lib or extra
parameter on methods, but now you mention the conditional flag it would
make sense, perhaps is good to attach libjingle issue to changelog to be
aware about the change.
El mar., 30 de abr. de 2019 a la(s) 02:52, ashar_clary (
[email protected]) escribió:
… 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?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#87 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAAKA2WUNZOERZXIFHZLEYTPS7NBTANCNFSM4HJC7FUA>
.
--
Alvaro
|
Please review. |
@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 I've not release new PodRTC version in ages, please point me which version of webrtc would be nice to build. |
@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. |
Merge from original
Fix for domain name incase of server side ice candidate. Resolved domain name to ip address.