-
Notifications
You must be signed in to change notification settings - Fork 233
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
TURN(S) TCP support in ice4j #241
Comments
To make sure I understand correctly: you want to use ice4j to connect to a TURN server over TCP? Looking around the code and the usage in the Jitsi desktop client it looks like you should be able to just use |
i tried and also looked at the code. i think it wants a component that is also TCP (instead of UDP) which does not work in my case. also it needs to be a TURNS (with SSL) instead of TURN |
Ah, right. Unfortunately I don't see any code to handle TLS. |
thx @bgrozev for the quick answer! so the additional things needed for this to work would be:
correct? Do you have any pointers where to begin? is there already any work being done related to this? |
I don't understand what you mean by "component of type UDP". An I think the only missing part is TLS support. See for example I don't know of any work related to this. |
I am referring to
Thank you, I will have a look and might start an implementation. |
Oh, I see. Literally the only useage of this code is to throw an exception if anything but UDP is passed. I cleaned it up in #242 |
I am looking for a way to use a TURN(s) server, listening on port 443 TCP.
I wasn't able to conclude a definitive answer, but i can't seem to find a way to do it with ice4j.
Am i just looking in the wrong place or is there currently not support for TURN(s) over TCP? The actual agent components will be on a dynamic UDP port.
Thanks for your help :)
The text was updated successfully, but these errors were encountered: