WebRTC ~ Connection with knowledge of IP and PORT is possible without using intermediate servers

I know that there is a lot of documentation about WebRTC, so I'm sorry if I missed this:

My question is this:

Is it possible to connect from client to client without using an intermediate server. (Including an intermediate server to configure the connection)

Take, for example, two clients that know each other by the IP addresses and ports they use for RTC. Both of them have already loaded the web page. Is it possible for them to connect without an intermediate signal server?

I hope you show me a good source of how this is possible! Or why not!

thanks

+7
javascript p2p webrtc
source share
1 answer

It’s not so easy to set up a connection. There is more information to be provided than ip and port. There are “proposal”, “response” and “candidates” that are sent between peers.

This is readable text, and the user can type it very well, but since it is quite large, it is easier to provide through the server in the middle.

You can send them by mail and enter them on a remote site ...

+3
source share

All Articles