this.peerConnection.onicecandidate = function(e) {
if (e.candidate) {
console.log(LOG_PREFIX +'ICE candidate received: '+ e.candidate.candidate);
if (disableICE) {
console.log(LOG_PREFIX +'Disable ICE candidates!!!');
e.candidate=null;
//self.onIceCompleted();
}
} else {
console.log(LOG_PREFIX +'End of ICE candidates!!!');
self.onIceCompleted();
}
};
Thanks,
Dipak
--
---
You received this message because you are subscribed to a topic in the Google Groups "discuss-webrtc" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/discuss-webrtc/VlugOufGfU4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to discuss-webrt...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to the Google Groups "discuss-webrtc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to discuss-webrt...@googlegroups.com.