Ice4j: What should I do after the agent has finished processing?

I try to use ice4j in a simple application, but I do not know what to do when the ice agent completes processing. Can an app really write to IceMediaStream? If not, how can I gather information to create a stream that I can write? There is very little documentation for ice4j, and reading through JUnit tests did not help either.

+5
source share
2 answers

I can recommend checking out the source code for the Jitsi project . Ice4j is a library that was developed primarily as a utility for this project and is used by default in its XMPP-based voice and video communications device. Try searching the class net.java.sip.communicator.impl.protocol.jabber.IceUdpTransportManager.

+4
source

Perhaps try the following tutorial:

stellarbuild.com/blog/article/ice4j-networking-tutorial-part-1

You can simply use ice4j as a socket to send information between computers behind different routers.

+2
source

All Articles