1

有谁知道测试 IcePseduoTcp 的过程?它是自包含的,还是必须将其指向 STUN 服务器才能工作?

4

1 回答 1

1

它看起来像代码状态:

        StunCandidateHarvester stunHarv = new StunCandidateHarvester(
            new TransportAddress("sip-communicator.net",
                                 3478, Transport.UDP));
        StunCandidateHarvester stun6Harv = new StunCandidateHarvester(
            new TransportAddress("ipv6.sip-communicator.net",
                                 3478, Transport.UDP));

所以你不需要你自己的 STUN 服务器,它指向一个。

于 2015-04-01T15:06:44.953 回答