Esempio n. 1
0
        public IceCandidate(IpAddressPort addr_port, Overlay_Link ol)
        {
            this.addr_port = addr_port;
            this.priority = IceCandidate.NoICE_PRIORITY;
            this.cand_type = CandType.tcp_host;
            this.overlay_link = ol;

            this.extension_list = new List<IceExtension>();

        }
Esempio n. 2
0
 public IceCandidate()
 {
     this.cand_type = CandType.tcp_host;
 }