Hi Experts,
Good noon all.. I am trying to build webrtc video chat solution using TURN server. I have configured my clients to connect to TURN server and opened all required ports in firewall to communicate interal from outside..
My turn configuration is:
var ICE_config= {
'iceServers': [
{
'credential': 'avaya',
'username': 'venkatesh'
}
]
};
peerConn = new webkitRTCPeerConnection(ICE_config);
peerConn.onicecandidate = onIceCandidate;
I have my own TURN server up and running..
But when i test internally still i am seeing only STUN data in wireshark and not UDP packets to my server and understand that both peers are in same network and hence communication is peer to peer.
I did setup another environment where both peers are not in same network,, But still no audio/video data i am seeing in browsers once connection established. But i am seeing ICE candidates are exchanged and offer and answer SDP's are exchanged..
Could anyone please help me understand why UDP media data is not traversing through TURN server.? Apprciate for any kind response and thank you in advance.
Thanks
Venkatesh