Exemplo n.º 1
0
 public void AddIceCandidate(string candidate, int sdpMlineindex, string sdpMid)
 {
     if (peer != null)
     {
         peer.AddIceCandidate(candidate, sdpMlineindex, sdpMid);
     }
 }
Exemplo n.º 2
0
        public void AddICE(string strType, int iIndex, string strIceValue)
        {
#if MAKE_LOGS
            Debug.Log($"Processing Ice type:{strType} index: {iIndex} value: {strIceValue}");
#endif
            m_perUnderlyingNetworkPeer.AddIceCandidate(strType, iIndex, strIceValue);
        }