python – WebRTC data channel message limit

I have peers connected through WebRTC, and I’m sending messages through the data channel.

I’ve read that there are some limits to the data channel of about 16kbs. However, this always was in the context of web browsers.

WebRTC can now be natively used “server-side”. I am using the aiortc Python library and I’ve observed that once I try sending messages of around 100mbs, the operation fails.

Is there a limit on the server side of WebRTC? Is there a way to send large message (gbs)?

Read more here: Source link