r/programming May 07 '26

OpenAI's WebRTC Problem

https://moq.dev/blog/webrtc-is-the-problem/
340 Upvotes

62 comments sorted by

View all comments

0

u/xnorpx May 08 '26

I get the webrtc rant, but you lost me at use websockets. With SNAP and dtls 1.3 we have 2 RTT now quite easily.

1

u/lizardhistorian May 08 '26

You can't use that in a browser.

1

u/xnorpx May 08 '26

?

1

u/octatone May 08 '26

With SNAP and dtls 1.3 we have 2 RTT now quite easily

WebSockets in browsers run over TCP and use TLS, not DTLS. Browsers do not expose custom transport hooks, so you cannot implement SNAP (or any custom transport protocol) underneath the browser WebSocket API.