Ice4j: Testing IcePseudoTcp - STUN server needed?

289 views Asked by At

Does anyone know the process of testing IcePseduoTcp? Is it self contained, or do you have to point it to a STUN server for it to work?

1

There are 1 answers

2
msj121 On

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.