Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kixelated authored Oct 30, 2023
1 parent d654e21 commit 028dadc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/blog/replacing-webrtc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Oof.
The best and worst part about WebRTC is that it supports peer-to-peer.

The [ICE handshake](https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Connectivity) is extremely complicated, even from the [application's point of view](https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Signaling_and_video_calling).
Without going into detail, there's an explosion of permutations cases that you need to handle based on the network topology.
Without going into detail, there's an explosion of permutations that you need to handle based on the network topology.
Some networks block P2P (ex. symmetric NATs) while others outright block UDP, forcing you to use a TURN server a [non-insignificant amount of time](https://twitter.com/HCornflower/status/894600051506515968).

Most conferencing solutions are client-server anyway, relying on their own private network instead of public transit (aka a CDN).
Expand Down

0 comments on commit 028dadc

Please sign in to comment.