Archived

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

Hope ICE to support twoway invocations for "udp endpoint"

Sometimes communication enviroment is too bad or expensive,even data spends several seconds on arriving server. But I can't customize tcp params to avoid data repeats,"udp endpoint" is a good choice,but ICE only supports oneway invocations for "udp endpoint".

Comments

  • bernard
    bernard Jupiter, FL
    Hi John,

    You could use callbacks for back-and-forth communications over UDP between two applications, e.g.:

    - your "client" sends a oneway UDP request to your "server"; this request contains a proxy for a callback object in the client
    - your "server" later sends a oneway UDP request to this callback object in the client

    Cheers,
    Bernard
  • thanks a lot

    Hi,Bernard:
    I am truly grateful for all your help.
    john gates