I'm creating a WebRTC server to support a very simple configuration, as follows:
- The WebRTC connection is only needed to be "half-duplex" (a media stream from the client to the server).
- The WebRTC server has a fixed public IP that the client can connect directly to. There is no need (thus far) for the server to connect back to the client.
As such, I am thinking that I don't need to use the full "Ice Negotiation" process. I just need the client to pass the SD for the desired media configuration to the server (and the server to perhaps reply).
Does anyone know of an example or documentation for a simplified connection process?