- Code: Select all
java.util.concurrent.CompletionException: java.lang.RuntimeException: java.io.IOException: Failed to bind even a single host candidate for component:Component id=1 parent stream=faData
no local candidates.
no remote candidates. preferredPort=6404 minPort=6112 maxPort=7112 foundAtLeastOneUsableInterface=false foundAtLeastOneUsableAddress=false
According to your log, this get's thrown:
https://github.com/jitsi/ice4j/blob/ce4 ... .java#L436That means it's not finding a single network interface while harvesting/gathering that is not loopback, that is up and that is allowed to be used that it can bind a socket to. (line 331-432:
https://github.com/jitsi/ice4j/blob/ce4 ... .java#L331, you could try running that code in a debugger on your machine to find out why it doesn't work)
Don't ask me how to fix that though, nothing I can do about that / no way to investigate that for me. It's a problem with your network configuration (on your machine). Could be an issue with network adapters, your antivirus or your operating system.