IcePseduoTcp をテストするプロセスを知っている人はいますか? それは自己完結型ですか、それとも動作させるために STUN サーバーを指す必要がありますか?
1 に答える
1
It looks like the code states:
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));
So you don't need your own STUN server it points to one.
于 2015-04-01T15:06:44.953 に答える