有人知道测试IcePseduoTcp的过程吗?它是自包含的,还是必须将其指向STUN服务器才能工作?
发布于 2015-04-01 23:06:45
它看起来像是代码声明:
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服务器,它指向一个。
https://stackoverflow.com/questions/25354480
复制相似问题