SwiftNIOTS for Signaling WebRTC

I would like to write a Client and potentially a Server for Signaling WebRTC. Typically what I have seen done is that WebSockets are used for the Signaling. Is it possible to use TCP instead? I would like to use NIOTS in order to do this.

Any advice is greatly appreciated

Thank you

Cole

1 Like

The short answer is "Yes, you can." In fact, WebSocket is an application layer protocol, which makes use of TCP as transport layer. So WebSocket is already TCP.