Archived

This forum has been archived. Please start a new discussion on GitHub.

UDP bidirectional communication?

Does ICE support server replying to the client via UDP? Because the client doesn't really care if the packets arrive or not, using TCP will be a bit overkill.

Comments

  • marc
    marc Florida
    UDP is inherently oneway, so there can be no direct response to a UDP message, such as return values for a remote operation call. However, you could use a callback, provided that your firewall allows you do so.