I play around trying to find a way to connect between two browsers on the same network in order to set up WebRTC without a roundtrip server (no STUN / ICE / TURN). Basically, an alternative to the approach is here where the โhandshakeโ is done using copy / letter / paste.
After sifting through all the examples of interaction between browsers, I could find (for example, through cookies or WebTCP ) plus a bunch of questions about SO (for example, here ), I again wonder:
Question :
If Alice and Bob visit the same foo.html
page while on the same network and they know each other's internal assigned IP addresses, are there any ways they can communicate exclusively with what is available in the browser?
This excludes non-standard APIs such as Mozilla TCP_Socket_API , but all tricks (img, iframes, cookies, etc.) are also allowed.
I'm just curious if I can listen to someone from the same network that "broadcasts" something through a browser in general.
Edit :
foo.html
will be on a static server, without logic, without ICE, without shortcut.
Edit :
Still not a solution, but a websocket server as the Chrome extension approaches. Example here: an almost clean browser without a WebRTC server
source share