Replies: 1 comment
-
Note: Chrome does support ICE-TCP option via host candidates if it receives a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
On some networks, UDP traffic between peers is not permitted, but TCP traffic is. In these cases, the peers both select TURN TLS candidates. This increases the proportion of traffic transported via relays. The more desirable route in this scenario is to use host TCP candidates.
Describe the solution you'd like
Add support for ICE-TCP, specifically passive host TCP candidates.
Describe alternatives you've considered
Have considered solutions that attempt a non-WebRTC alternative path (e.g. HTTP or HTTPS to peer's IP on LAN) in parallel with WebRTC. However, this is non-ideal -- HTTP is not an option on HTTPS pages due to browser mixed-content restrictions, and HTTPS requires the remote to provide a non-self-signed certificate.
Beta Was this translation helpful? Give feedback.
All reactions